12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class StockQuantity(object):
- def __init__(self):
- self._date = None
- self._quantity = None
- @property
- def date(self):
- return self._date
- @date.setter
- def date(self, value):
- self._date = value
- @property
- def quantity(self):
- return self._quantity
- @quantity.setter
- def quantity(self, value):
- self._quantity = value
- def to_alipay_dict(self):
- params = dict()
- if self.date:
- if hasattr(self.date, 'to_alipay_dict'):
- params['date'] = self.date.to_alipay_dict()
- else:
- params['date'] = self.date
- if self.quantity:
- if hasattr(self.quantity, 'to_alipay_dict'):
- params['quantity'] = self.quantity.to_alipay_dict()
- else:
- params['quantity'] = self.quantity
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = StockQuantity()
- if 'date' in d:
- o.date = d['date']
- if 'quantity' in d:
- o.quantity = d['quantity']
- return o
|