GetVideoInfoResponseUnmarshaller.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. using Aliyun.Acs.Core.Transform;
  20. using Aliyun.Acs.vod.Model.V20170321;
  21. using System;
  22. using System.Collections.Generic;
  23. namespace Aliyun.Acs.vod.Transform.V20170321
  24. {
  25. public class GetVideoInfoResponseUnmarshaller
  26. {
  27. public static GetVideoInfoResponse Unmarshall(UnmarshallerContext context)
  28. {
  29. GetVideoInfoResponse getVideoInfoResponse = new GetVideoInfoResponse();
  30. getVideoInfoResponse.HttpResponse = context.HttpResponse;
  31. getVideoInfoResponse.RequestId = context.StringValue("GetVideoInfo.RequestId");
  32. GetVideoInfoResponse.GetVideoInfo_Video video = new GetVideoInfoResponse.GetVideoInfo_Video();
  33. video.VideoId = context.StringValue("GetVideoInfo.Video.VideoId");
  34. video.Title = context.StringValue("GetVideoInfo.Video.Title");
  35. video.Tags = context.StringValue("GetVideoInfo.Video.Tags");
  36. video.Status = context.StringValue("GetVideoInfo.Video.Status");
  37. video.Size = context.LongValue("GetVideoInfo.Video.Size");
  38. video.Duration = context.FloatValue("GetVideoInfo.Video.Duration");
  39. video.Description = context.StringValue("GetVideoInfo.Video.Description");
  40. video.CreateTime = context.StringValue("GetVideoInfo.Video.CreateTime");
  41. video.CreationTime = context.StringValue("GetVideoInfo.Video.CreationTime");
  42. video.ModifyTime = context.StringValue("GetVideoInfo.Video.ModifyTime");
  43. video.CoverURL = context.StringValue("GetVideoInfo.Video.CoverURL");
  44. video.CateId = context.IntegerValue("GetVideoInfo.Video.CateId");
  45. video.CateName = context.StringValue("GetVideoInfo.Video.CateName");
  46. List<string> video_snapshots = new List<string>();
  47. for (int i = 0; i < context.Length("GetVideoInfo.Video.Snapshots.Length"); i++) {
  48. video_snapshots.Add(context.StringValue("GetVideoInfo.Video.Snapshots["+ i +"]"));
  49. }
  50. video.Snapshots = video_snapshots;
  51. getVideoInfoResponse.Video = video;
  52. return getVideoInfoResponse;
  53. }
  54. }
  55. }