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