GetVideoListResponseUnmarshaller.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 GetVideoListResponseUnmarshaller
  26. {
  27. public static GetVideoListResponse Unmarshall(UnmarshallerContext context)
  28. {
  29. GetVideoListResponse getVideoListResponse = new GetVideoListResponse();
  30. getVideoListResponse.HttpResponse = context.HttpResponse;
  31. getVideoListResponse.RequestId = context.StringValue("GetVideoList.RequestId");
  32. getVideoListResponse.Total = context.IntegerValue("GetVideoList.Total");
  33. List<GetVideoListResponse.GetVideoList_Video> getVideoListResponse_videoList = new List<GetVideoListResponse.GetVideoList_Video>();
  34. for (int i = 0; i < context.Length("GetVideoList.VideoList.Length"); i++) {
  35. GetVideoListResponse.GetVideoList_Video video = new GetVideoListResponse.GetVideoList_Video();
  36. video.VideoId = context.StringValue("GetVideoList.VideoList["+ i +"].VideoId");
  37. video.Title = context.StringValue("GetVideoList.VideoList["+ i +"].Title");
  38. video.Tags = context.StringValue("GetVideoList.VideoList["+ i +"].Tags");
  39. video.Status = context.StringValue("GetVideoList.VideoList["+ i +"].Status");
  40. video.Size = context.LongValue("GetVideoList.VideoList["+ i +"].Size");
  41. video.Duration = context.FloatValue("GetVideoList.VideoList["+ i +"].Duration");
  42. video.Description = context.StringValue("GetVideoList.VideoList["+ i +"].Description");
  43. video.CreateTime = context.StringValue("GetVideoList.VideoList["+ i +"].CreateTime");
  44. video.CreationTime = context.StringValue("GetVideoList.VideoList["+ i +"].CreationTime");
  45. video.ModifyTime = context.StringValue("GetVideoList.VideoList["+ i +"].ModifyTime");
  46. video.CoverURL = context.StringValue("GetVideoList.VideoList["+ i +"].CoverURL");
  47. video.CateId = context.IntegerValue("GetVideoList.VideoList["+ i +"].CateId");
  48. video.CateName = context.StringValue("GetVideoList.VideoList["+ i +"].CateName");
  49. List<string> video_snapshots = new List<string>();
  50. for (int j = 0; j < context.Length("GetVideoList.VideoList["+ i +"].Snapshots.Length"); j++) {
  51. video_snapshots.Add(context.StringValue("GetVideoList.VideoList["+ i +"].Snapshots["+ j +"]"));
  52. }
  53. video.Snapshots = video_snapshots;
  54. getVideoListResponse_videoList.Add(video);
  55. }
  56. getVideoListResponse.VideoList = getVideoListResponse_videoList;
  57. return getVideoListResponse;
  58. }
  59. }
  60. }