12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- from alipay.aop.api.domain.AlipayEcoMessageEntity import AlipayEcoMessageEntity
- class AlipayEcoCityserviceMessageSendModel(object):
- def __init__(self):
- self._batch_size = None
- self._encrypt_type = None
- self._msg_list = None
- @property
- def batch_size(self):
- return self._batch_size
- @batch_size.setter
- def batch_size(self, value):
- self._batch_size = value
- @property
- def encrypt_type(self):
- return self._encrypt_type
- @encrypt_type.setter
- def encrypt_type(self, value):
- self._encrypt_type = value
- @property
- def msg_list(self):
- return self._msg_list
- @msg_list.setter
- def msg_list(self, value):
- if isinstance(value, list):
- self._msg_list = list()
- for i in value:
- if isinstance(i, AlipayEcoMessageEntity):
- self._msg_list.append(i)
- else:
- self._msg_list.append(AlipayEcoMessageEntity.from_alipay_dict(i))
- def to_alipay_dict(self):
- params = dict()
- if self.batch_size:
- if hasattr(self.batch_size, 'to_alipay_dict'):
- params['batch_size'] = self.batch_size.to_alipay_dict()
- else:
- params['batch_size'] = self.batch_size
- if self.encrypt_type:
- if hasattr(self.encrypt_type, 'to_alipay_dict'):
- params['encrypt_type'] = self.encrypt_type.to_alipay_dict()
- else:
- params['encrypt_type'] = self.encrypt_type
- if self.msg_list:
- if isinstance(self.msg_list, list):
- for i in range(0, len(self.msg_list)):
- element = self.msg_list[i]
- if hasattr(element, 'to_alipay_dict'):
- self.msg_list[i] = element.to_alipay_dict()
- if hasattr(self.msg_list, 'to_alipay_dict'):
- params['msg_list'] = self.msg_list.to_alipay_dict()
- else:
- params['msg_list'] = self.msg_list
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayEcoCityserviceMessageSendModel()
- if 'batch_size' in d:
- o.batch_size = d['batch_size']
- if 'encrypt_type' in d:
- o.encrypt_type = d['encrypt_type']
- if 'msg_list' in d:
- o.msg_list = d['msg_list']
- return o
|