123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayOverseasTravelShopFollowModel(object):
- def __init__(self):
- self._action_type = None
- self._ch_info = None
- self._shop_id = None
- self._unique_id = None
- self._user_id = None
- self._user_id_type = None
- @property
- def action_type(self):
- return self._action_type
- @action_type.setter
- def action_type(self, value):
- self._action_type = value
- @property
- def ch_info(self):
- return self._ch_info
- @ch_info.setter
- def ch_info(self, value):
- self._ch_info = value
- @property
- def shop_id(self):
- return self._shop_id
- @shop_id.setter
- def shop_id(self, value):
- self._shop_id = value
- @property
- def unique_id(self):
- return self._unique_id
- @unique_id.setter
- def unique_id(self, value):
- self._unique_id = value
- @property
- def user_id(self):
- return self._user_id
- @user_id.setter
- def user_id(self, value):
- self._user_id = value
- @property
- def user_id_type(self):
- return self._user_id_type
- @user_id_type.setter
- def user_id_type(self, value):
- self._user_id_type = value
- def to_alipay_dict(self):
- params = dict()
- if self.action_type:
- if hasattr(self.action_type, 'to_alipay_dict'):
- params['action_type'] = self.action_type.to_alipay_dict()
- else:
- params['action_type'] = self.action_type
- if self.ch_info:
- if hasattr(self.ch_info, 'to_alipay_dict'):
- params['ch_info'] = self.ch_info.to_alipay_dict()
- else:
- params['ch_info'] = self.ch_info
- 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.unique_id:
- if hasattr(self.unique_id, 'to_alipay_dict'):
- params['unique_id'] = self.unique_id.to_alipay_dict()
- else:
- params['unique_id'] = self.unique_id
- if self.user_id:
- if hasattr(self.user_id, 'to_alipay_dict'):
- params['user_id'] = self.user_id.to_alipay_dict()
- else:
- params['user_id'] = self.user_id
- if self.user_id_type:
- if hasattr(self.user_id_type, 'to_alipay_dict'):
- params['user_id_type'] = self.user_id_type.to_alipay_dict()
- else:
- params['user_id_type'] = self.user_id_type
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayOverseasTravelShopFollowModel()
- if 'action_type' in d:
- o.action_type = d['action_type']
- if 'ch_info' in d:
- o.ch_info = d['ch_info']
- if 'shop_id' in d:
- o.shop_id = d['shop_id']
- if 'unique_id' in d:
- o.unique_id = d['unique_id']
- if 'user_id' in d:
- o.user_id = d['user_id']
- if 'user_id_type' in d:
- o.user_id_type = d['user_id_type']
- return o
|