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