AlipayEbppIndustryApplyflowQueryResponse.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayEbppIndustryApplyflowQueryResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayEbppIndustryApplyflowQueryResponse, self).__init__()
  8. self._ability_code = None
  9. self._apply_flow_no = None
  10. self._bill_key = None
  11. self._biz_inst = None
  12. self._biz_type = None
  13. self._gmt_create = None
  14. self._gmt_modified = None
  15. self._org_result_code = None
  16. self._out_apply_no = None
  17. self._result_code = None
  18. self._result_context = None
  19. self._result_msg = None
  20. self._status = None
  21. @property
  22. def ability_code(self):
  23. return self._ability_code
  24. @ability_code.setter
  25. def ability_code(self, value):
  26. self._ability_code = value
  27. @property
  28. def apply_flow_no(self):
  29. return self._apply_flow_no
  30. @apply_flow_no.setter
  31. def apply_flow_no(self, value):
  32. self._apply_flow_no = value
  33. @property
  34. def bill_key(self):
  35. return self._bill_key
  36. @bill_key.setter
  37. def bill_key(self, value):
  38. self._bill_key = value
  39. @property
  40. def biz_inst(self):
  41. return self._biz_inst
  42. @biz_inst.setter
  43. def biz_inst(self, value):
  44. self._biz_inst = value
  45. @property
  46. def biz_type(self):
  47. return self._biz_type
  48. @biz_type.setter
  49. def biz_type(self, value):
  50. self._biz_type = value
  51. @property
  52. def gmt_create(self):
  53. return self._gmt_create
  54. @gmt_create.setter
  55. def gmt_create(self, value):
  56. self._gmt_create = value
  57. @property
  58. def gmt_modified(self):
  59. return self._gmt_modified
  60. @gmt_modified.setter
  61. def gmt_modified(self, value):
  62. self._gmt_modified = value
  63. @property
  64. def org_result_code(self):
  65. return self._org_result_code
  66. @org_result_code.setter
  67. def org_result_code(self, value):
  68. self._org_result_code = value
  69. @property
  70. def out_apply_no(self):
  71. return self._out_apply_no
  72. @out_apply_no.setter
  73. def out_apply_no(self, value):
  74. self._out_apply_no = value
  75. @property
  76. def result_code(self):
  77. return self._result_code
  78. @result_code.setter
  79. def result_code(self, value):
  80. self._result_code = value
  81. @property
  82. def result_context(self):
  83. return self._result_context
  84. @result_context.setter
  85. def result_context(self, value):
  86. self._result_context = value
  87. @property
  88. def result_msg(self):
  89. return self._result_msg
  90. @result_msg.setter
  91. def result_msg(self, value):
  92. self._result_msg = value
  93. @property
  94. def status(self):
  95. return self._status
  96. @status.setter
  97. def status(self, value):
  98. self._status = value
  99. def parse_response_content(self, response_content):
  100. response = super(AlipayEbppIndustryApplyflowQueryResponse, self).parse_response_content(response_content)
  101. if 'ability_code' in response:
  102. self.ability_code = response['ability_code']
  103. if 'apply_flow_no' in response:
  104. self.apply_flow_no = response['apply_flow_no']
  105. if 'bill_key' in response:
  106. self.bill_key = response['bill_key']
  107. if 'biz_inst' in response:
  108. self.biz_inst = response['biz_inst']
  109. if 'biz_type' in response:
  110. self.biz_type = response['biz_type']
  111. if 'gmt_create' in response:
  112. self.gmt_create = response['gmt_create']
  113. if 'gmt_modified' in response:
  114. self.gmt_modified = response['gmt_modified']
  115. if 'org_result_code' in response:
  116. self.org_result_code = response['org_result_code']
  117. if 'out_apply_no' in response:
  118. self.out_apply_no = response['out_apply_no']
  119. if 'result_code' in response:
  120. self.result_code = response['result_code']
  121. if 'result_context' in response:
  122. self.result_context = response['result_context']
  123. if 'result_msg' in response:
  124. self.result_msg = response['result_msg']
  125. if 'status' in response:
  126. self.status = response['status']