1234567891011121314151617181920212223242526272829303132333435 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.response.AlipayResponse import AlipayResponse
- class AntMerchantExpandContractFacetofaceSignResponse(AlipayResponse):
- def __init__(self):
- super(AntMerchantExpandContractFacetofaceSignResponse, self).__init__()
- self._order_no = None
- self._out_biz_no = None
- @property
- def order_no(self):
- return self._order_no
- @order_no.setter
- def order_no(self, value):
- self._order_no = value
- @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(AntMerchantExpandContractFacetofaceSignResponse, self).parse_response_content(response_content)
- if 'order_no' in response:
- self.order_no = response['order_no']
- if 'out_biz_no' in response:
- self.out_biz_no = response['out_biz_no']
|