AlipayCommerceIotMdeviceprodAssetapplyQueryResponse.py 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayCommerceIotMdeviceprodAssetapplyQueryResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayCommerceIotMdeviceprodAssetapplyQueryResponse, self).__init__()
  8. self._apply_isv_name = None
  9. self._apply_isv_pid = None
  10. self._apply_merchant_mobile = None
  11. self._apply_merchant_name = None
  12. self._apply_merchant_pid = None
  13. self._apply_person_mobile = None
  14. self._apply_person_name = None
  15. self._detail_info = None
  16. self._first_apply = None
  17. self._shop_id = None
  18. self._shop_name = None
  19. @property
  20. def apply_isv_name(self):
  21. return self._apply_isv_name
  22. @apply_isv_name.setter
  23. def apply_isv_name(self, value):
  24. self._apply_isv_name = value
  25. @property
  26. def apply_isv_pid(self):
  27. return self._apply_isv_pid
  28. @apply_isv_pid.setter
  29. def apply_isv_pid(self, value):
  30. self._apply_isv_pid = value
  31. @property
  32. def apply_merchant_mobile(self):
  33. return self._apply_merchant_mobile
  34. @apply_merchant_mobile.setter
  35. def apply_merchant_mobile(self, value):
  36. self._apply_merchant_mobile = value
  37. @property
  38. def apply_merchant_name(self):
  39. return self._apply_merchant_name
  40. @apply_merchant_name.setter
  41. def apply_merchant_name(self, value):
  42. self._apply_merchant_name = value
  43. @property
  44. def apply_merchant_pid(self):
  45. return self._apply_merchant_pid
  46. @apply_merchant_pid.setter
  47. def apply_merchant_pid(self, value):
  48. self._apply_merchant_pid = value
  49. @property
  50. def apply_person_mobile(self):
  51. return self._apply_person_mobile
  52. @apply_person_mobile.setter
  53. def apply_person_mobile(self, value):
  54. self._apply_person_mobile = value
  55. @property
  56. def apply_person_name(self):
  57. return self._apply_person_name
  58. @apply_person_name.setter
  59. def apply_person_name(self, value):
  60. self._apply_person_name = value
  61. @property
  62. def detail_info(self):
  63. return self._detail_info
  64. @detail_info.setter
  65. def detail_info(self, value):
  66. self._detail_info = value
  67. @property
  68. def first_apply(self):
  69. return self._first_apply
  70. @first_apply.setter
  71. def first_apply(self, value):
  72. self._first_apply = value
  73. @property
  74. def shop_id(self):
  75. return self._shop_id
  76. @shop_id.setter
  77. def shop_id(self, value):
  78. self._shop_id = value
  79. @property
  80. def shop_name(self):
  81. return self._shop_name
  82. @shop_name.setter
  83. def shop_name(self, value):
  84. self._shop_name = value
  85. def parse_response_content(self, response_content):
  86. response = super(AlipayCommerceIotMdeviceprodAssetapplyQueryResponse, self).parse_response_content(response_content)
  87. if 'apply_isv_name' in response:
  88. self.apply_isv_name = response['apply_isv_name']
  89. if 'apply_isv_pid' in response:
  90. self.apply_isv_pid = response['apply_isv_pid']
  91. if 'apply_merchant_mobile' in response:
  92. self.apply_merchant_mobile = response['apply_merchant_mobile']
  93. if 'apply_merchant_name' in response:
  94. self.apply_merchant_name = response['apply_merchant_name']
  95. if 'apply_merchant_pid' in response:
  96. self.apply_merchant_pid = response['apply_merchant_pid']
  97. if 'apply_person_mobile' in response:
  98. self.apply_person_mobile = response['apply_person_mobile']
  99. if 'apply_person_name' in response:
  100. self.apply_person_name = response['apply_person_name']
  101. if 'detail_info' in response:
  102. self.detail_info = response['detail_info']
  103. if 'first_apply' in response:
  104. self.first_apply = response['first_apply']
  105. if 'shop_id' in response:
  106. self.shop_id = response['shop_id']
  107. if 'shop_name' in response:
  108. self.shop_name = response['shop_name']