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