123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class VoucherVO(object):
- def __init__(self):
- self._gmt_active = None
- self._gmt_expired = None
- self._name = None
- self._threshold_amount = None
- self._total_amount = None
- self._voucher_id = None
- self._voucher_template_id = None
- @property
- def gmt_active(self):
- return self._gmt_active
- @gmt_active.setter
- def gmt_active(self, value):
- self._gmt_active = value
- @property
- def gmt_expired(self):
- return self._gmt_expired
- @gmt_expired.setter
- def gmt_expired(self, value):
- self._gmt_expired = value
- @property
- def name(self):
- return self._name
- @name.setter
- def name(self, value):
- self._name = value
- @property
- def threshold_amount(self):
- return self._threshold_amount
- @threshold_amount.setter
- def threshold_amount(self, value):
- self._threshold_amount = value
- @property
- def total_amount(self):
- return self._total_amount
- @total_amount.setter
- def total_amount(self, value):
- self._total_amount = value
- @property
- def voucher_id(self):
- return self._voucher_id
- @voucher_id.setter
- def voucher_id(self, value):
- self._voucher_id = value
- @property
- def voucher_template_id(self):
- return self._voucher_template_id
- @voucher_template_id.setter
- def voucher_template_id(self, value):
- self._voucher_template_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.gmt_active:
- if hasattr(self.gmt_active, 'to_alipay_dict'):
- params['gmt_active'] = self.gmt_active.to_alipay_dict()
- else:
- params['gmt_active'] = self.gmt_active
- if self.gmt_expired:
- if hasattr(self.gmt_expired, 'to_alipay_dict'):
- params['gmt_expired'] = self.gmt_expired.to_alipay_dict()
- else:
- params['gmt_expired'] = self.gmt_expired
- if self.name:
- if hasattr(self.name, 'to_alipay_dict'):
- params['name'] = self.name.to_alipay_dict()
- else:
- params['name'] = self.name
- if self.threshold_amount:
- if hasattr(self.threshold_amount, 'to_alipay_dict'):
- params['threshold_amount'] = self.threshold_amount.to_alipay_dict()
- else:
- params['threshold_amount'] = self.threshold_amount
- if self.total_amount:
- if hasattr(self.total_amount, 'to_alipay_dict'):
- params['total_amount'] = self.total_amount.to_alipay_dict()
- else:
- params['total_amount'] = self.total_amount
- if self.voucher_id:
- if hasattr(self.voucher_id, 'to_alipay_dict'):
- params['voucher_id'] = self.voucher_id.to_alipay_dict()
- else:
- params['voucher_id'] = self.voucher_id
- if self.voucher_template_id:
- if hasattr(self.voucher_template_id, 'to_alipay_dict'):
- params['voucher_template_id'] = self.voucher_template_id.to_alipay_dict()
- else:
- params['voucher_template_id'] = self.voucher_template_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = VoucherVO()
- if 'gmt_active' in d:
- o.gmt_active = d['gmt_active']
- if 'gmt_expired' in d:
- o.gmt_expired = d['gmt_expired']
- if 'name' in d:
- o.name = d['name']
- if 'threshold_amount' in d:
- o.threshold_amount = d['threshold_amount']
- if 'total_amount' in d:
- o.total_amount = d['total_amount']
- if 'voucher_id' in d:
- o.voucher_id = d['voucher_id']
- if 'voucher_template_id' in d:
- o.voucher_template_id = d['voucher_template_id']
- return o
|