Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.constant.ParamConstants import *
class GoodsComponent(object):
def __init__(self):
self._goods_code = None
self._goods_name = None
self._quantity = None
@property
def goods_code(self):
return self._goods_code
@goods_code.setter
def goods_code(self, value):
self._goods_code = 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
def to_alipay_dict(self):
params = dict()
if self.goods_code:
if hasattr(self.goods_code, 'to_alipay_dict'):
params['goods_code'] = self.goods_code.to_alipay_dict()
else:
params['goods_code'] = self.goods_code
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
return params
@staticmethod
def from_alipay_dict(d):
if not d:
return None
o = GoodsComponent()
if 'goods_code' in d:
o.goods_code = d['goods_code']
if 'goods_name' in d:
o.goods_name = d['goods_name']
if 'quantity' in d:
o.quantity = d['quantity']
return o