12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipaySocialAntforestPlantConsultModel(object):
- def __init__(self):
- self._account_id = None
- self._apply_type = None
- self._project_id = None
- self._user_id = None
- @property
- def account_id(self):
- return self._account_id
- @account_id.setter
- def account_id(self, value):
- self._account_id = value
- @property
- def apply_type(self):
- return self._apply_type
- @apply_type.setter
- def apply_type(self, value):
- self._apply_type = value
- @property
- def project_id(self):
- return self._project_id
- @project_id.setter
- def project_id(self, value):
- self._project_id = value
- @property
- def user_id(self):
- return self._user_id
- @user_id.setter
- def user_id(self, value):
- self._user_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.account_id:
- if hasattr(self.account_id, 'to_alipay_dict'):
- params['account_id'] = self.account_id.to_alipay_dict()
- else:
- params['account_id'] = self.account_id
- if self.apply_type:
- if hasattr(self.apply_type, 'to_alipay_dict'):
- params['apply_type'] = self.apply_type.to_alipay_dict()
- else:
- params['apply_type'] = self.apply_type
- if self.project_id:
- if hasattr(self.project_id, 'to_alipay_dict'):
- params['project_id'] = self.project_id.to_alipay_dict()
- else:
- params['project_id'] = self.project_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
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipaySocialAntforestPlantConsultModel()
- if 'account_id' in d:
- o.account_id = d['account_id']
- if 'apply_type' in d:
- o.apply_type = d['apply_type']
- if 'project_id' in d:
- o.project_id = d['project_id']
- if 'user_id' in d:
- o.user_id = d['user_id']
- return o
|