12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class EbppUserChargeInstInfo(object):
- def __init__(self):
- self._biz_type = None
- self._charge_inst = None
- self._charge_inst_name = None
- self._sub_biz_type = None
- @property
- def biz_type(self):
- return self._biz_type
- @biz_type.setter
- def biz_type(self, value):
- self._biz_type = value
- @property
- def charge_inst(self):
- return self._charge_inst
- @charge_inst.setter
- def charge_inst(self, value):
- self._charge_inst = value
- @property
- def charge_inst_name(self):
- return self._charge_inst_name
- @charge_inst_name.setter
- def charge_inst_name(self, value):
- self._charge_inst_name = value
- @property
- def sub_biz_type(self):
- return self._sub_biz_type
- @sub_biz_type.setter
- def sub_biz_type(self, value):
- self._sub_biz_type = value
- def to_alipay_dict(self):
- params = dict()
- 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.charge_inst:
- if hasattr(self.charge_inst, 'to_alipay_dict'):
- params['charge_inst'] = self.charge_inst.to_alipay_dict()
- else:
- params['charge_inst'] = self.charge_inst
- if self.charge_inst_name:
- if hasattr(self.charge_inst_name, 'to_alipay_dict'):
- params['charge_inst_name'] = self.charge_inst_name.to_alipay_dict()
- else:
- params['charge_inst_name'] = self.charge_inst_name
- if self.sub_biz_type:
- if hasattr(self.sub_biz_type, 'to_alipay_dict'):
- params['sub_biz_type'] = self.sub_biz_type.to_alipay_dict()
- else:
- params['sub_biz_type'] = self.sub_biz_type
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = EbppUserChargeInstInfo()
- if 'biz_type' in d:
- o.biz_type = d['biz_type']
- if 'charge_inst' in d:
- o.charge_inst = d['charge_inst']
- if 'charge_inst_name' in d:
- o.charge_inst_name = d['charge_inst_name']
- if 'sub_biz_type' in d:
- o.sub_biz_type = d['sub_biz_type']
- return o
|