12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayFundTransGroupfundsPayorderCreateModel(object):
- def __init__(self):
- self._batch_no = None
- self._bill_no = None
- self._current_user_id = None
- self._ext_param = None
- @property
- def batch_no(self):
- return self._batch_no
- @batch_no.setter
- def batch_no(self, value):
- self._batch_no = value
- @property
- def bill_no(self):
- return self._bill_no
- @bill_no.setter
- def bill_no(self, value):
- self._bill_no = value
- @property
- def current_user_id(self):
- return self._current_user_id
- @current_user_id.setter
- def current_user_id(self, value):
- self._current_user_id = value
- @property
- def ext_param(self):
- return self._ext_param
- @ext_param.setter
- def ext_param(self, value):
- self._ext_param = value
- def to_alipay_dict(self):
- params = dict()
- if self.batch_no:
- if hasattr(self.batch_no, 'to_alipay_dict'):
- params['batch_no'] = self.batch_no.to_alipay_dict()
- else:
- params['batch_no'] = self.batch_no
- if self.bill_no:
- if hasattr(self.bill_no, 'to_alipay_dict'):
- params['bill_no'] = self.bill_no.to_alipay_dict()
- else:
- params['bill_no'] = self.bill_no
- if self.current_user_id:
- if hasattr(self.current_user_id, 'to_alipay_dict'):
- params['current_user_id'] = self.current_user_id.to_alipay_dict()
- else:
- params['current_user_id'] = self.current_user_id
- if self.ext_param:
- if hasattr(self.ext_param, 'to_alipay_dict'):
- params['ext_param'] = self.ext_param.to_alipay_dict()
- else:
- params['ext_param'] = self.ext_param
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayFundTransGroupfundsPayorderCreateModel()
- if 'batch_no' in d:
- o.batch_no = d['batch_no']
- if 'bill_no' in d:
- o.bill_no = d['bill_no']
- if 'current_user_id' in d:
- o.current_user_id = d['current_user_id']
- if 'ext_param' in d:
- o.ext_param = d['ext_param']
- return o
|