GetPlayInfoResponseUnmarshaller.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 GetPlayInfoResponseUnmarshaller
  26. {
  27. public static GetPlayInfoResponse Unmarshall(UnmarshallerContext context)
  28. {
  29. GetPlayInfoResponse getPlayInfoResponse = new GetPlayInfoResponse();
  30. getPlayInfoResponse.HttpResponse = context.HttpResponse;
  31. getPlayInfoResponse.RequestId = context.StringValue("GetPlayInfo.RequestId");
  32. GetPlayInfoResponse.GetPlayInfo_VideoBase videoBase = new GetPlayInfoResponse.GetPlayInfo_VideoBase();
  33. videoBase.CoverURL = context.StringValue("GetPlayInfo.VideoBase.CoverURL");
  34. videoBase.Duration = context.StringValue("GetPlayInfo.VideoBase.Duration");
  35. videoBase.Status = context.StringValue("GetPlayInfo.VideoBase.Status");
  36. videoBase.Title = context.StringValue("GetPlayInfo.VideoBase.Title");
  37. videoBase.VideoId = context.StringValue("GetPlayInfo.VideoBase.VideoId");
  38. videoBase.MediaType = context.StringValue("GetPlayInfo.VideoBase.MediaType");
  39. videoBase.CreationTime = context.StringValue("GetPlayInfo.VideoBase.CreationTime");
  40. getPlayInfoResponse.VideoBase = videoBase;
  41. List<GetPlayInfoResponse.GetPlayInfo_PlayInfo> getPlayInfoResponse_playInfoList = new List<GetPlayInfoResponse.GetPlayInfo_PlayInfo>();
  42. for (int i = 0; i < context.Length("GetPlayInfo.PlayInfoList.Length"); i++) {
  43. GetPlayInfoResponse.GetPlayInfo_PlayInfo playInfo = new GetPlayInfoResponse.GetPlayInfo_PlayInfo();
  44. playInfo.Width = context.LongValue("GetPlayInfo.PlayInfoList["+ i +"].Width");
  45. playInfo.Height = context.LongValue("GetPlayInfo.PlayInfoList["+ i +"].Height");
  46. playInfo.Size = context.LongValue("GetPlayInfo.PlayInfoList["+ i +"].Size");
  47. playInfo.PlayURL = context.StringValue("GetPlayInfo.PlayInfoList["+ i +"].PlayURL");
  48. playInfo.Bitrate = context.StringValue("GetPlayInfo.PlayInfoList["+ i +"].Bitrate");
  49. playInfo.Definition = context.StringValue("GetPlayInfo.PlayInfoList["+ i +"].Definition");
  50. playInfo.Duration = context.StringValue("GetPlayInfo.PlayInfoList["+ i +"].Duration");
  51. playInfo.Format = context.StringValue("GetPlayInfo.PlayInfoList["+ i +"].Format");
  52. playInfo.Fps = context.StringValue("GetPlayInfo.PlayInfoList["+ i +"].Fps");
  53. playInfo.Encrypt = context.LongValue("GetPlayInfo.PlayInfoList["+ i +"].Encrypt");
  54. getPlayInfoResponse_playInfoList.Add(playInfo);
  55. }
  56. getPlayInfoResponse.PlayInfoList = getPlayInfoResponse_playInfoList;
  57. return getPlayInfoResponse;
  58. }
  59. }
  60. }