12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class ShopOrderModifyResult(object):
- def __init__(self):
- self._ext_infos = None
- self._result_code = None
- self._shop_id = None
- self._store_id = None
- @property
- def ext_infos(self):
- return self._ext_infos
- @ext_infos.setter
- def ext_infos(self, value):
- self._ext_infos = value
- @property
- def result_code(self):
- return self._result_code
- @result_code.setter
- def result_code(self, value):
- self._result_code = value
- @property
- def shop_id(self):
- return self._shop_id
- @shop_id.setter
- def shop_id(self, value):
- self._shop_id = value
- @property
- def store_id(self):
- return self._store_id
- @store_id.setter
- def store_id(self, value):
- self._store_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.ext_infos:
- if hasattr(self.ext_infos, 'to_alipay_dict'):
- params['ext_infos'] = self.ext_infos.to_alipay_dict()
- else:
- params['ext_infos'] = self.ext_infos
- if self.result_code:
- if hasattr(self.result_code, 'to_alipay_dict'):
- params['result_code'] = self.result_code.to_alipay_dict()
- else:
- params['result_code'] = self.result_code
- if self.shop_id:
- if hasattr(self.shop_id, 'to_alipay_dict'):
- params['shop_id'] = self.shop_id.to_alipay_dict()
- else:
- params['shop_id'] = self.shop_id
- if self.store_id:
- if hasattr(self.store_id, 'to_alipay_dict'):
- params['store_id'] = self.store_id.to_alipay_dict()
- else:
- params['store_id'] = self.store_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = ShopOrderModifyResult()
- if 'ext_infos' in d:
- o.ext_infos = d['ext_infos']
- if 'result_code' in d:
- o.result_code = d['result_code']
- if 'shop_id' in d:
- o.shop_id = d['shop_id']
- if 'store_id' in d:
- o.store_id = d['store_id']
- return o
|