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