AlipayEcoRenthouseCommunityInfoSyncResponse.py 1011 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayEcoRenthouseCommunityInfoSyncResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayEcoRenthouseCommunityInfoSyncResponse, self).__init__()
  8. self._comm_req_id = None
  9. self._status = None
  10. @property
  11. def comm_req_id(self):
  12. return self._comm_req_id
  13. @comm_req_id.setter
  14. def comm_req_id(self, value):
  15. self._comm_req_id = value
  16. @property
  17. def status(self):
  18. return self._status
  19. @status.setter
  20. def status(self, value):
  21. self._status = value
  22. def parse_response_content(self, response_content):
  23. response = super(AlipayEcoRenthouseCommunityInfoSyncResponse, self).parse_response_content(response_content)
  24. if 'comm_req_id' in response:
  25. self.comm_req_id = response['comm_req_id']
  26. if 'status' in response:
  27. self.status = response['status']