AlipayFundTransAacollectPayorderCreateResponse.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayFundTransAacollectPayorderCreateResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayFundTransAacollectPayorderCreateResponse, self).__init__()
  8. self._batch_no = None
  9. self._biz_type = None
  10. self._transfer_no = None
  11. @property
  12. def batch_no(self):
  13. return self._batch_no
  14. @batch_no.setter
  15. def batch_no(self, value):
  16. self._batch_no = value
  17. @property
  18. def biz_type(self):
  19. return self._biz_type
  20. @biz_type.setter
  21. def biz_type(self, value):
  22. self._biz_type = value
  23. @property
  24. def transfer_no(self):
  25. return self._transfer_no
  26. @transfer_no.setter
  27. def transfer_no(self, value):
  28. self._transfer_no = value
  29. def parse_response_content(self, response_content):
  30. response = super(AlipayFundTransAacollectPayorderCreateResponse, self).parse_response_content(response_content)
  31. if 'batch_no' in response:
  32. self.batch_no = response['batch_no']
  33. if 'biz_type' in response:
  34. self.biz_type = response['biz_type']
  35. if 'transfer_no' in response:
  36. self.transfer_no = response['transfer_no']