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