AlipayCommerceTransportIndustryProxyUseResponse.py 829 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayCommerceTransportIndustryProxyUseResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayCommerceTransportIndustryProxyUseResponse, self).__init__()
  8. self._industry_response = None
  9. @property
  10. def industry_response(self):
  11. return self._industry_response
  12. @industry_response.setter
  13. def industry_response(self, value):
  14. self._industry_response = value
  15. def parse_response_content(self, response_content):
  16. response = super(AlipayCommerceTransportIndustryProxyUseResponse, self).parse_response_content(response_content)
  17. if 'industry_response' in response:
  18. self.industry_response = response['industry_response']