12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class ContactPersonInfo(object):
- def __init__(self):
- self._contact_email = None
- self._contact_mobile = None
- self._contact_name = None
- self._contact_type = None
- @property
- def contact_email(self):
- return self._contact_email
- @contact_email.setter
- def contact_email(self, value):
- self._contact_email = value
- @property
- def contact_mobile(self):
- return self._contact_mobile
- @contact_mobile.setter
- def contact_mobile(self, value):
- self._contact_mobile = value
- @property
- def contact_name(self):
- return self._contact_name
- @contact_name.setter
- def contact_name(self, value):
- self._contact_name = value
- @property
- def contact_type(self):
- return self._contact_type
- @contact_type.setter
- def contact_type(self, value):
- self._contact_type = value
- def to_alipay_dict(self):
- params = dict()
- if self.contact_email:
- if hasattr(self.contact_email, 'to_alipay_dict'):
- params['contact_email'] = self.contact_email.to_alipay_dict()
- else:
- params['contact_email'] = self.contact_email
- if self.contact_mobile:
- if hasattr(self.contact_mobile, 'to_alipay_dict'):
- params['contact_mobile'] = self.contact_mobile.to_alipay_dict()
- else:
- params['contact_mobile'] = self.contact_mobile
- if self.contact_name:
- if hasattr(self.contact_name, 'to_alipay_dict'):
- params['contact_name'] = self.contact_name.to_alipay_dict()
- else:
- params['contact_name'] = self.contact_name
- if self.contact_type:
- if hasattr(self.contact_type, 'to_alipay_dict'):
- params['contact_type'] = self.contact_type.to_alipay_dict()
- else:
- params['contact_type'] = self.contact_type
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = ContactPersonInfo()
- if 'contact_email' in d:
- o.contact_email = d['contact_email']
- if 'contact_mobile' in d:
- o.contact_mobile = d['contact_mobile']
- if 'contact_name' in d:
- o.contact_name = d['contact_name']
- if 'contact_type' in d:
- o.contact_type = d['contact_type']
- return o
|