12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class BaseInfoConfig(object):
- def __init__(self):
- self._contact_email = None
- self._contact_phone = None
- self._logo = None
- self._service_name = 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_phone(self):
- return self._contact_phone
- @contact_phone.setter
- def contact_phone(self, value):
- self._contact_phone = value
- @property
- def logo(self):
- return self._logo
- @logo.setter
- def logo(self, value):
- self._logo = value
- @property
- def service_name(self):
- return self._service_name
- @service_name.setter
- def service_name(self, value):
- self._service_name = 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_phone:
- if hasattr(self.contact_phone, 'to_alipay_dict'):
- params['contact_phone'] = self.contact_phone.to_alipay_dict()
- else:
- params['contact_phone'] = self.contact_phone
- if self.logo:
- if hasattr(self.logo, 'to_alipay_dict'):
- params['logo'] = self.logo.to_alipay_dict()
- else:
- params['logo'] = self.logo
- if self.service_name:
- if hasattr(self.service_name, 'to_alipay_dict'):
- params['service_name'] = self.service_name.to_alipay_dict()
- else:
- params['service_name'] = self.service_name
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = BaseInfoConfig()
- if 'contact_email' in d:
- o.contact_email = d['contact_email']
- if 'contact_phone' in d:
- o.contact_phone = d['contact_phone']
- if 'logo' in d:
- o.logo = d['logo']
- if 'service_name' in d:
- o.service_name = d['service_name']
- return o
|