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