123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class GroupFundUserBill(object):
- def __init__(self):
- self._actual_amount = None
- self._amount = None
- self._batch_no = None
- self._batch_status = None
- self._bill_no = None
- self._bill_type = None
- self._status = None
- self._timeout = None
- self._user_id = None
- @property
- def actual_amount(self):
- return self._actual_amount
- @actual_amount.setter
- def actual_amount(self, value):
- self._actual_amount = value
- @property
- def amount(self):
- return self._amount
- @amount.setter
- def amount(self, value):
- self._amount = value
- @property
- def batch_no(self):
- return self._batch_no
- @batch_no.setter
- def batch_no(self, value):
- self._batch_no = value
- @property
- def batch_status(self):
- return self._batch_status
- @batch_status.setter
- def batch_status(self, value):
- self._batch_status = value
- @property
- def bill_no(self):
- return self._bill_no
- @bill_no.setter
- def bill_no(self, value):
- self._bill_no = value
- @property
- def bill_type(self):
- return self._bill_type
- @bill_type.setter
- def bill_type(self, value):
- self._bill_type = value
- @property
- def status(self):
- return self._status
- @status.setter
- def status(self, value):
- self._status = value
- @property
- def timeout(self):
- return self._timeout
- @timeout.setter
- def timeout(self, value):
- self._timeout = value
- @property
- def user_id(self):
- return self._user_id
- @user_id.setter
- def user_id(self, value):
- self._user_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.actual_amount:
- if hasattr(self.actual_amount, 'to_alipay_dict'):
- params['actual_amount'] = self.actual_amount.to_alipay_dict()
- else:
- params['actual_amount'] = self.actual_amount
- if self.amount:
- if hasattr(self.amount, 'to_alipay_dict'):
- params['amount'] = self.amount.to_alipay_dict()
- else:
- params['amount'] = self.amount
- 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.batch_status:
- if hasattr(self.batch_status, 'to_alipay_dict'):
- params['batch_status'] = self.batch_status.to_alipay_dict()
- else:
- params['batch_status'] = self.batch_status
- 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.bill_type:
- if hasattr(self.bill_type, 'to_alipay_dict'):
- params['bill_type'] = self.bill_type.to_alipay_dict()
- else:
- params['bill_type'] = self.bill_type
- if self.status:
- if hasattr(self.status, 'to_alipay_dict'):
- params['status'] = self.status.to_alipay_dict()
- else:
- params['status'] = self.status
- if self.timeout:
- if hasattr(self.timeout, 'to_alipay_dict'):
- params['timeout'] = self.timeout.to_alipay_dict()
- else:
- params['timeout'] = self.timeout
- if self.user_id:
- if hasattr(self.user_id, 'to_alipay_dict'):
- params['user_id'] = self.user_id.to_alipay_dict()
- else:
- params['user_id'] = self.user_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = GroupFundUserBill()
- if 'actual_amount' in d:
- o.actual_amount = d['actual_amount']
- if 'amount' in d:
- o.amount = d['amount']
- if 'batch_no' in d:
- o.batch_no = d['batch_no']
- if 'batch_status' in d:
- o.batch_status = d['batch_status']
- if 'bill_no' in d:
- o.bill_no = d['bill_no']
- if 'bill_type' in d:
- o.bill_type = d['bill_type']
- if 'status' in d:
- o.status = d['status']
- if 'timeout' in d:
- o.timeout = d['timeout']
- if 'user_id' in d:
- o.user_id = d['user_id']
- return o
|