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