12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class ProductInviteStatusInfo(object):
- def __init__(self):
- self._product_code = None
- self._product_name = None
- self._status = None
- @property
- def product_code(self):
- return self._product_code
- @product_code.setter
- def product_code(self, value):
- self._product_code = value
- @property
- def product_name(self):
- return self._product_name
- @product_name.setter
- def product_name(self, value):
- self._product_name = value
- @property
- def status(self):
- return self._status
- @status.setter
- def status(self, value):
- self._status = value
- def to_alipay_dict(self):
- params = dict()
- if self.product_code:
- if hasattr(self.product_code, 'to_alipay_dict'):
- params['product_code'] = self.product_code.to_alipay_dict()
- else:
- params['product_code'] = self.product_code
- if self.product_name:
- if hasattr(self.product_name, 'to_alipay_dict'):
- params['product_name'] = self.product_name.to_alipay_dict()
- else:
- params['product_name'] = self.product_name
- if self.status:
- if hasattr(self.status, 'to_alipay_dict'):
- params['status'] = self.status.to_alipay_dict()
- else:
- params['status'] = self.status
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = ProductInviteStatusInfo()
- if 'product_code' in d:
- o.product_code = d['product_code']
- if 'product_name' in d:
- o.product_name = d['product_name']
- if 'status' in d:
- o.status = d['status']
- return o
|