QueryAppConfigResponse.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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;
  20. using System.Collections.Generic;
  21. namespace Aliyun.Acs.Push.Model.V20160801
  22. {
  23. public class QueryAppConfigResponse : AcsResponse
  24. {
  25. private AppConfig_ appConfig;
  26. public AppConfig_ AppConfig
  27. {
  28. get
  29. {
  30. return appConfig;
  31. }
  32. set
  33. {
  34. appConfig = value;
  35. }
  36. }
  37. public class AppConfig_{
  38. private long? appKey;
  39. private string appId;
  40. private string appName;
  41. private string bundleId;
  42. private string packageName;
  43. private bool? boxFlag;
  44. private bool? android;
  45. private bool? iOS;
  46. private string productCertKey;
  47. private string productCertPass;
  48. private string devCertKey;
  49. private string devCertPass;
  50. public long? AppKey
  51. {
  52. get
  53. {
  54. return appKey;
  55. }
  56. set
  57. {
  58. appKey = value;
  59. }
  60. }
  61. public string AppId
  62. {
  63. get
  64. {
  65. return appId;
  66. }
  67. set
  68. {
  69. appId = value;
  70. }
  71. }
  72. public string AppName
  73. {
  74. get
  75. {
  76. return appName;
  77. }
  78. set
  79. {
  80. appName = value;
  81. }
  82. }
  83. public string BundleId
  84. {
  85. get
  86. {
  87. return bundleId;
  88. }
  89. set
  90. {
  91. bundleId = value;
  92. }
  93. }
  94. public string PackageName
  95. {
  96. get
  97. {
  98. return packageName;
  99. }
  100. set
  101. {
  102. packageName = value;
  103. }
  104. }
  105. public bool? BoxFlag
  106. {
  107. get
  108. {
  109. return boxFlag;
  110. }
  111. set
  112. {
  113. boxFlag = value;
  114. }
  115. }
  116. public bool? Android
  117. {
  118. get
  119. {
  120. return android;
  121. }
  122. set
  123. {
  124. android = value;
  125. }
  126. }
  127. public bool? IOS
  128. {
  129. get
  130. {
  131. return iOS;
  132. }
  133. set
  134. {
  135. iOS = value;
  136. }
  137. }
  138. public string ProductCertKey
  139. {
  140. get
  141. {
  142. return productCertKey;
  143. }
  144. set
  145. {
  146. productCertKey = value;
  147. }
  148. }
  149. public string ProductCertPass
  150. {
  151. get
  152. {
  153. return productCertPass;
  154. }
  155. set
  156. {
  157. productCertPass = value;
  158. }
  159. }
  160. public string DevCertKey
  161. {
  162. get
  163. {
  164. return devCertKey;
  165. }
  166. set
  167. {
  168. devCertKey = value;
  169. }
  170. }
  171. public string DevCertPass
  172. {
  173. get
  174. {
  175. return devCertPass;
  176. }
  177. set
  178. {
  179. devCertPass = value;
  180. }
  181. }
  182. }
  183. }
  184. }