GetVideoPlayInfoResponseUnmarshaller.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 GetVideoPlayInfoResponseUnmarshaller
  26. {
  27. public static GetVideoPlayInfoResponse Unmarshall(UnmarshallerContext context)
  28. {
  29. GetVideoPlayInfoResponse getVideoPlayInfoResponse = new GetVideoPlayInfoResponse();
  30. getVideoPlayInfoResponse.HttpResponse = context.HttpResponse;
  31. getVideoPlayInfoResponse.RequestId = context.StringValue("GetVideoPlayInfo.RequestId");
  32. GetVideoPlayInfoResponse.GetVideoPlayInfo_PlayInfo playInfo = new GetVideoPlayInfoResponse.GetVideoPlayInfo_PlayInfo();
  33. playInfo.AccessKeyId = context.StringValue("GetVideoPlayInfo.PlayInfo.AccessKeyId");
  34. playInfo.AccessKeySecret = context.StringValue("GetVideoPlayInfo.PlayInfo.AccessKeySecret");
  35. playInfo.AuthInfo = context.StringValue("GetVideoPlayInfo.PlayInfo.AuthInfo");
  36. playInfo.SecurityToken = context.StringValue("GetVideoPlayInfo.PlayInfo.SecurityToken");
  37. playInfo.Region = context.StringValue("GetVideoPlayInfo.PlayInfo.Region");
  38. playInfo.PlayDomain = context.StringValue("GetVideoPlayInfo.PlayInfo.PlayDomain");
  39. getVideoPlayInfoResponse.PlayInfo = playInfo;
  40. GetVideoPlayInfoResponse.GetVideoPlayInfo_VideoInfo videoInfo = new GetVideoPlayInfoResponse.GetVideoPlayInfo_VideoInfo();
  41. videoInfo.CoverURL = context.StringValue("GetVideoPlayInfo.VideoInfo.CoverURL");
  42. videoInfo.CustomerId = context.LongValue("GetVideoPlayInfo.VideoInfo.CustomerId");
  43. videoInfo.Duration = context.FloatValue("GetVideoPlayInfo.VideoInfo.Duration");
  44. videoInfo.Status = context.StringValue("GetVideoPlayInfo.VideoInfo.Status");
  45. videoInfo.Title = context.StringValue("GetVideoPlayInfo.VideoInfo.Title");
  46. videoInfo.VideoId = context.StringValue("GetVideoPlayInfo.VideoInfo.VideoId");
  47. getVideoPlayInfoResponse.VideoInfo = videoInfo;
  48. return getVideoPlayInfoResponse;
  49. }
  50. }
  51. }