12345678910111213141516171819202122232425 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.response.AlipayResponse import AlipayResponse
- class AlipayOverseasTravelFliggyShopTransferResponse(AlipayResponse):
- def __init__(self):
- super(AlipayOverseasTravelFliggyShopTransferResponse, self).__init__()
- self._result_data = None
- @property
- def result_data(self):
- return self._result_data
- @result_data.setter
- def result_data(self, value):
- self._result_data = value
- def parse_response_content(self, response_content):
- response = super(AlipayOverseasTravelFliggyShopTransferResponse, self).parse_response_content(response_content)
- if 'result_data' in response:
- self.result_data = response['result_data']
|