Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
alipay-sdk-python
/
alipay
/
aop
/
api
/
response
/
AlipaySecurityRiskAuthenticationQueryResponse.py
|
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.response.AlipayResponse import AlipayResponse
class AlipaySecurityRiskAuthenticationQueryResponse(AlipayResponse):
def __init__(self):
super(AlipaySecurityRiskAuthenticationQueryResponse, self).__init__()
self._biz_result = None
@property
def biz_result(self):
return self._biz_result
@biz_result.setter
def biz_result(self, value):
self._biz_result = value
def parse_response_content(self, response_content):
response = super(AlipaySecurityRiskAuthenticationQueryResponse, self).parse_response_content(response_content)
if 'biz_result' in response:
self.biz_result = response['biz_result']