12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class SceneProdDeputyPaymentBillDetail(object):
- def __init__(self):
- self._deputy_account = None
- self._deputy_type = None
- self._term = None
- @property
- def deputy_account(self):
- return self._deputy_account
- @deputy_account.setter
- def deputy_account(self, value):
- self._deputy_account = value
- @property
- def deputy_type(self):
- return self._deputy_type
- @deputy_type.setter
- def deputy_type(self, value):
- self._deputy_type = value
- @property
- def term(self):
- return self._term
- @term.setter
- def term(self, value):
- self._term = value
- def to_alipay_dict(self):
- params = dict()
- if self.deputy_account:
- if hasattr(self.deputy_account, 'to_alipay_dict'):
- params['deputy_account'] = self.deputy_account.to_alipay_dict()
- else:
- params['deputy_account'] = self.deputy_account
- if self.deputy_type:
- if hasattr(self.deputy_type, 'to_alipay_dict'):
- params['deputy_type'] = self.deputy_type.to_alipay_dict()
- else:
- params['deputy_type'] = self.deputy_type
- if self.term:
- if hasattr(self.term, 'to_alipay_dict'):
- params['term'] = self.term.to_alipay_dict()
- else:
- params['term'] = self.term
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = SceneProdDeputyPaymentBillDetail()
- if 'deputy_account' in d:
- o.deputy_account = d['deputy_account']
- if 'deputy_type' in d:
- o.deputy_type = d['deputy_type']
- if 'term' in d:
- o.term = d['term']
- return o
|