123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- from alipay.aop.api.domain.OpenCertPic import OpenCertPic
- class AlipayUserCertdocSyncModel(object):
- def __init__(self):
- self._cert_no = None
- self._cert_type = None
- self._ext_info = None
- self._name = None
- self._pic_list = None
- self._status = None
- self._user_id = None
- @property
- def cert_no(self):
- return self._cert_no
- @cert_no.setter
- def cert_no(self, value):
- self._cert_no = value
- @property
- def cert_type(self):
- return self._cert_type
- @cert_type.setter
- def cert_type(self, value):
- self._cert_type = value
- @property
- def ext_info(self):
- return self._ext_info
- @ext_info.setter
- def ext_info(self, value):
- self._ext_info = value
- @property
- def name(self):
- return self._name
- @name.setter
- def name(self, value):
- self._name = value
- @property
- def pic_list(self):
- return self._pic_list
- @pic_list.setter
- def pic_list(self, value):
- if isinstance(value, list):
- self._pic_list = list()
- for i in value:
- if isinstance(i, OpenCertPic):
- self._pic_list.append(i)
- else:
- self._pic_list.append(OpenCertPic.from_alipay_dict(i))
- @property
- def status(self):
- return self._status
- @status.setter
- def status(self, value):
- self._status = 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.cert_no:
- if hasattr(self.cert_no, 'to_alipay_dict'):
- params['cert_no'] = self.cert_no.to_alipay_dict()
- else:
- params['cert_no'] = self.cert_no
- if self.cert_type:
- if hasattr(self.cert_type, 'to_alipay_dict'):
- params['cert_type'] = self.cert_type.to_alipay_dict()
- else:
- params['cert_type'] = self.cert_type
- if self.ext_info:
- if hasattr(self.ext_info, 'to_alipay_dict'):
- params['ext_info'] = self.ext_info.to_alipay_dict()
- else:
- params['ext_info'] = self.ext_info
- if self.name:
- if hasattr(self.name, 'to_alipay_dict'):
- params['name'] = self.name.to_alipay_dict()
- else:
- params['name'] = self.name
- if self.pic_list:
- if isinstance(self.pic_list, list):
- for i in range(0, len(self.pic_list)):
- element = self.pic_list[i]
- if hasattr(element, 'to_alipay_dict'):
- self.pic_list[i] = element.to_alipay_dict()
- if hasattr(self.pic_list, 'to_alipay_dict'):
- params['pic_list'] = self.pic_list.to_alipay_dict()
- else:
- params['pic_list'] = self.pic_list
- if self.status:
- if hasattr(self.status, 'to_alipay_dict'):
- params['status'] = self.status.to_alipay_dict()
- else:
- params['status'] = self.status
- 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 = AlipayUserCertdocSyncModel()
- if 'cert_no' in d:
- o.cert_no = d['cert_no']
- if 'cert_type' in d:
- o.cert_type = d['cert_type']
- if 'ext_info' in d:
- o.ext_info = d['ext_info']
- if 'name' in d:
- o.name = d['name']
- if 'pic_list' in d:
- o.pic_list = d['pic_list']
- if 'status' in d:
- o.status = d['status']
- if 'user_id' in d:
- o.user_id = d['user_id']
- return o
|