ZolozIdentificationCustomerCertifyzhubInitializeResponse.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class ZolozIdentificationCustomerCertifyzhubInitializeResponse(AlipayResponse):
  6. def __init__(self):
  7. super(ZolozIdentificationCustomerCertifyzhubInitializeResponse, self).__init__()
  8. self._biz_id = None
  9. self._zim_code = None
  10. self._zim_id = None
  11. self._zim_msg = None
  12. @property
  13. def biz_id(self):
  14. return self._biz_id
  15. @biz_id.setter
  16. def biz_id(self, value):
  17. self._biz_id = value
  18. @property
  19. def zim_code(self):
  20. return self._zim_code
  21. @zim_code.setter
  22. def zim_code(self, value):
  23. self._zim_code = value
  24. @property
  25. def zim_id(self):
  26. return self._zim_id
  27. @zim_id.setter
  28. def zim_id(self, value):
  29. self._zim_id = value
  30. @property
  31. def zim_msg(self):
  32. return self._zim_msg
  33. @zim_msg.setter
  34. def zim_msg(self, value):
  35. self._zim_msg = value
  36. def parse_response_content(self, response_content):
  37. response = super(ZolozIdentificationCustomerCertifyzhubInitializeResponse, self).parse_response_content(response_content)
  38. if 'biz_id' in response:
  39. self.biz_id = response['biz_id']
  40. if 'zim_code' in response:
  41. self.zim_code = response['zim_code']
  42. if 'zim_id' in response:
  43. self.zim_id = response['zim_id']
  44. if 'zim_msg' in response:
  45. self.zim_msg = response['zim_msg']