123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class GoodsInfo(object):
- def __init__(self):
- self._goods_category = None
- self._goods_id = None
- self._goods_name = None
- self._price = None
- self._quantity = None
- @property
- def goods_category(self):
- return self._goods_category
- @goods_category.setter
- def goods_category(self, value):
- self._goods_category = value
- @property
- def goods_id(self):
- return self._goods_id
- @goods_id.setter
- def goods_id(self, value):
- self._goods_id = value
- @property
- def goods_name(self):
- return self._goods_name
- @goods_name.setter
- def goods_name(self, value):
- self._goods_name = value
- @property
- def price(self):
- return self._price
- @price.setter
- def price(self, value):
- self._price = 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.goods_category:
- if hasattr(self.goods_category, 'to_alipay_dict'):
- params['goods_category'] = self.goods_category.to_alipay_dict()
- else:
- params['goods_category'] = self.goods_category
- if self.goods_id:
- if hasattr(self.goods_id, 'to_alipay_dict'):
- params['goods_id'] = self.goods_id.to_alipay_dict()
- else:
- params['goods_id'] = self.goods_id
- if self.goods_name:
- if hasattr(self.goods_name, 'to_alipay_dict'):
- params['goods_name'] = self.goods_name.to_alipay_dict()
- else:
- params['goods_name'] = self.goods_name
- if self.price:
- if hasattr(self.price, 'to_alipay_dict'):
- params['price'] = self.price.to_alipay_dict()
- else:
- params['price'] = self.price
- 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 = GoodsInfo()
- if 'goods_category' in d:
- o.goods_category = d['goods_category']
- if 'goods_id' in d:
- o.goods_id = d['goods_id']
- if 'goods_name' in d:
- o.goods_name = d['goods_name']
- if 'price' in d:
- o.price = d['price']
- if 'quantity' in d:
- o.quantity = d['quantity']
- return o
|