123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayEcoBasicBizinfoQueryModel(object):
- def __init__(self):
- self._biz_inst = None
- self._biz_type = None
- self._data_code = None
- self._ext_info = None
- self._request_context = None
- @property
- def biz_inst(self):
- return self._biz_inst
- @biz_inst.setter
- def biz_inst(self, value):
- self._biz_inst = value
- @property
- def biz_type(self):
- return self._biz_type
- @biz_type.setter
- def biz_type(self, value):
- self._biz_type = value
- @property
- def data_code(self):
- return self._data_code
- @data_code.setter
- def data_code(self, value):
- self._data_code = value
- @property
- def ext_info(self):
- return self._ext_info
- @ext_info.setter
- def ext_info(self, value):
- self._ext_info = value
- @property
- def request_context(self):
- return self._request_context
- @request_context.setter
- def request_context(self, value):
- self._request_context = value
- def to_alipay_dict(self):
- params = dict()
- if self.biz_inst:
- if hasattr(self.biz_inst, 'to_alipay_dict'):
- params['biz_inst'] = self.biz_inst.to_alipay_dict()
- else:
- params['biz_inst'] = self.biz_inst
- if self.biz_type:
- if hasattr(self.biz_type, 'to_alipay_dict'):
- params['biz_type'] = self.biz_type.to_alipay_dict()
- else:
- params['biz_type'] = self.biz_type
- if self.data_code:
- if hasattr(self.data_code, 'to_alipay_dict'):
- params['data_code'] = self.data_code.to_alipay_dict()
- else:
- params['data_code'] = self.data_code
- if self.ext_info:
- if hasattr(self.ext_info, 'to_alipay_dict'):
- params['ext_info'] = self.ext_info.to_alipay_dict()
- else:
- params['ext_info'] = self.ext_info
- if self.request_context:
- if hasattr(self.request_context, 'to_alipay_dict'):
- params['request_context'] = self.request_context.to_alipay_dict()
- else:
- params['request_context'] = self.request_context
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayEcoBasicBizinfoQueryModel()
- if 'biz_inst' in d:
- o.biz_inst = d['biz_inst']
- if 'biz_type' in d:
- o.biz_type = d['biz_type']
- if 'data_code' in d:
- o.data_code = d['data_code']
- if 'ext_info' in d:
- o.ext_info = d['ext_info']
- if 'request_context' in d:
- o.request_context = d['request_context']
- return o
|