QueryAppConfigResponseUnmarshaller.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.Push.Model.V20160801;
  21. using System;
  22. using System.Collections.Generic;
  23. namespace Aliyun.Acs.Push.Transform.V20160801
  24. {
  25. public class QueryAppConfigResponseUnmarshaller
  26. {
  27. public static QueryAppConfigResponse Unmarshall(UnmarshallerContext context)
  28. {
  29. QueryAppConfigResponse queryAppConfigResponse = new QueryAppConfigResponse();
  30. queryAppConfigResponse.HttpResponse = context.HttpResponse;
  31. queryAppConfigResponse.RequestId = context.StringValue("QueryAppConfig.RequestId");
  32. QueryAppConfigResponse.AppConfig_ appConfig = new QueryAppConfigResponse.AppConfig_();
  33. appConfig.AppKey = context.LongValue("QueryAppConfig.AppConfig.AppKey");
  34. appConfig.AppId = context.StringValue("QueryAppConfig.AppConfig.AppId");
  35. appConfig.AppName = context.StringValue("QueryAppConfig.AppConfig.AppName");
  36. appConfig.BundleId = context.StringValue("QueryAppConfig.AppConfig.BundleId");
  37. appConfig.PackageName = context.StringValue("QueryAppConfig.AppConfig.PackageName");
  38. appConfig.BoxFlag = context.BooleanValue("QueryAppConfig.AppConfig.BoxFlag");
  39. appConfig.Android = context.BooleanValue("QueryAppConfig.AppConfig.Android");
  40. appConfig.IOS = context.BooleanValue("QueryAppConfig.AppConfig.IOS");
  41. appConfig.ProductCertKey = context.StringValue("QueryAppConfig.AppConfig.ProductCertKey");
  42. appConfig.ProductCertPass = context.StringValue("QueryAppConfig.AppConfig.ProductCertPass");
  43. appConfig.DevCertKey = context.StringValue("QueryAppConfig.AppConfig.DevCertKey");
  44. appConfig.DevCertPass = context.StringValue("QueryAppConfig.AppConfig.DevCertPass");
  45. queryAppConfigResponse.AppConfig = appConfig;
  46. return queryAppConfigResponse;
  47. }
  48. }
  49. }