123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class GoodsDetail(object):
- def __init__(self):
- self._alipay_goods_id = None
- self._body = None
- self._categories_tree = None
- self._goods_category = None
- self._goods_id = None
- self._goods_name = None
- self._price = None
- self._quantity = None
- self._show_url = None
- @property
- def alipay_goods_id(self):
- return self._alipay_goods_id
- @alipay_goods_id.setter
- def alipay_goods_id(self, value):
- self._alipay_goods_id = value
- @property
- def body(self):
- return self._body
- @body.setter
- def body(self, value):
- self._body = value
- @property
- def categories_tree(self):
- return self._categories_tree
- @categories_tree.setter
- def categories_tree(self, value):
- self._categories_tree = value
- @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
- @property
- def show_url(self):
- return self._show_url
- @show_url.setter
- def show_url(self, value):
- self._show_url = value
- def to_alipay_dict(self):
- params = dict()
- if self.alipay_goods_id:
- if hasattr(self.alipay_goods_id, 'to_alipay_dict'):
- params['alipay_goods_id'] = self.alipay_goods_id.to_alipay_dict()
- else:
- params['alipay_goods_id'] = self.alipay_goods_id
- if self.body:
- if hasattr(self.body, 'to_alipay_dict'):
- params['body'] = self.body.to_alipay_dict()
- else:
- params['body'] = self.body
- if self.categories_tree:
- if hasattr(self.categories_tree, 'to_alipay_dict'):
- params['categories_tree'] = self.categories_tree.to_alipay_dict()
- else:
- params['categories_tree'] = self.categories_tree
- 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
- if self.show_url:
- if hasattr(self.show_url, 'to_alipay_dict'):
- params['show_url'] = self.show_url.to_alipay_dict()
- else:
- params['show_url'] = self.show_url
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = GoodsDetail()
- if 'alipay_goods_id' in d:
- o.alipay_goods_id = d['alipay_goods_id']
- if 'body' in d:
- o.body = d['body']
- if 'categories_tree' in d:
- o.categories_tree = d['categories_tree']
- 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']
- if 'show_url' in d:
- o.show_url = d['show_url']
- return o
|