12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class CPCommunitySet(object):
- def __init__(self):
- self._community_id = None
- self._merchant_pid = None
- self._out_community_id = None
- self._status = None
- @property
- def community_id(self):
- return self._community_id
- @community_id.setter
- def community_id(self, value):
- self._community_id = value
- @property
- def merchant_pid(self):
- return self._merchant_pid
- @merchant_pid.setter
- def merchant_pid(self, value):
- self._merchant_pid = value
- @property
- def out_community_id(self):
- return self._out_community_id
- @out_community_id.setter
- def out_community_id(self, value):
- self._out_community_id = 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.community_id:
- if hasattr(self.community_id, 'to_alipay_dict'):
- params['community_id'] = self.community_id.to_alipay_dict()
- else:
- params['community_id'] = self.community_id
- if self.merchant_pid:
- if hasattr(self.merchant_pid, 'to_alipay_dict'):
- params['merchant_pid'] = self.merchant_pid.to_alipay_dict()
- else:
- params['merchant_pid'] = self.merchant_pid
- if self.out_community_id:
- if hasattr(self.out_community_id, 'to_alipay_dict'):
- params['out_community_id'] = self.out_community_id.to_alipay_dict()
- else:
- params['out_community_id'] = self.out_community_id
- 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 = CPCommunitySet()
- if 'community_id' in d:
- o.community_id = d['community_id']
- if 'merchant_pid' in d:
- o.merchant_pid = d['merchant_pid']
- if 'out_community_id' in d:
- o.out_community_id = d['out_community_id']
- if 'status' in d:
- o.status = d['status']
- return o
|