Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.constant.ParamConstants import *
class AntMerchantExpandIndirectTiansuoQueryModel(object):
def __init__(self):
self._business_license_no = None
@property
def business_license_no(self):
return self._business_license_no
@business_license_no.setter
def business_license_no(self, value):
self._business_license_no = value
def to_alipay_dict(self):
params = dict()
if self.business_license_no:
if hasattr(self.business_license_no, 'to_alipay_dict'):
params['business_license_no'] = self.business_license_no.to_alipay_dict()
else:
params['business_license_no'] = self.business_license_no
return params
@staticmethod
def from_alipay_dict(d):
if not d:
return None
o = AntMerchantExpandIndirectTiansuoQueryModel()
if 'business_license_no' in d:
o.business_license_no = d['business_license_no']
return o