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