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