12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayFinanceZcbEndowmentorderDetailQueryModel(object):
- def __init__(self):
- self._end_time = None
- self._product_id = None
- self._start_time = None
- @property
- def end_time(self):
- return self._end_time
- @end_time.setter
- def end_time(self, value):
- self._end_time = value
- @property
- def product_id(self):
- return self._product_id
- @product_id.setter
- def product_id(self, value):
- self._product_id = value
- @property
- def start_time(self):
- return self._start_time
- @start_time.setter
- def start_time(self, value):
- self._start_time = value
- def to_alipay_dict(self):
- params = dict()
- if self.end_time:
- if hasattr(self.end_time, 'to_alipay_dict'):
- params['end_time'] = self.end_time.to_alipay_dict()
- else:
- params['end_time'] = self.end_time
- if self.product_id:
- if hasattr(self.product_id, 'to_alipay_dict'):
- params['product_id'] = self.product_id.to_alipay_dict()
- else:
- params['product_id'] = self.product_id
- if self.start_time:
- if hasattr(self.start_time, 'to_alipay_dict'):
- params['start_time'] = self.start_time.to_alipay_dict()
- else:
- params['start_time'] = self.start_time
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayFinanceZcbEndowmentorderDetailQueryModel()
- if 'end_time' in d:
- o.end_time = d['end_time']
- if 'product_id' in d:
- o.product_id = d['product_id']
- if 'start_time' in d:
- o.start_time = d['start_time']
- return o
|