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