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