12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class KoubeiCateringItemQueryModel(object):
- def __init__(self):
- self._auth_code = None
- self._item_id = None
- self._operator_type = None
- self._request_id = None
- @property
- def auth_code(self):
- return self._auth_code
- @auth_code.setter
- def auth_code(self, value):
- self._auth_code = value
- @property
- def item_id(self):
- return self._item_id
- @item_id.setter
- def item_id(self, value):
- self._item_id = value
- @property
- def operator_type(self):
- return self._operator_type
- @operator_type.setter
- def operator_type(self, value):
- self._operator_type = value
- @property
- def request_id(self):
- return self._request_id
- @request_id.setter
- def request_id(self, value):
- self._request_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.auth_code:
- if hasattr(self.auth_code, 'to_alipay_dict'):
- params['auth_code'] = self.auth_code.to_alipay_dict()
- else:
- params['auth_code'] = self.auth_code
- if self.item_id:
- if hasattr(self.item_id, 'to_alipay_dict'):
- params['item_id'] = self.item_id.to_alipay_dict()
- else:
- params['item_id'] = self.item_id
- if self.operator_type:
- if hasattr(self.operator_type, 'to_alipay_dict'):
- params['operator_type'] = self.operator_type.to_alipay_dict()
- else:
- params['operator_type'] = self.operator_type
- if self.request_id:
- if hasattr(self.request_id, 'to_alipay_dict'):
- params['request_id'] = self.request_id.to_alipay_dict()
- else:
- params['request_id'] = self.request_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = KoubeiCateringItemQueryModel()
- if 'auth_code' in d:
- o.auth_code = d['auth_code']
- if 'item_id' in d:
- o.item_id = d['item_id']
- if 'operator_type' in d:
- o.operator_type = d['operator_type']
- if 'request_id' in d:
- o.request_id = d['request_id']
- return o
|