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