123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayCommerceKidsAccountBindModel(object):
- def __init__(self):
- self._child_cert_no = None
- self._child_cert_type = None
- self._child_id = None
- self._child_name = None
- self._class_name = None
- self._contact_mobile = None
- self._parent_uid = None
- self._scene_code = None
- self._school_id = None
- self._student_no = None
- @property
- def child_cert_no(self):
- return self._child_cert_no
- @child_cert_no.setter
- def child_cert_no(self, value):
- self._child_cert_no = value
- @property
- def child_cert_type(self):
- return self._child_cert_type
- @child_cert_type.setter
- def child_cert_type(self, value):
- self._child_cert_type = value
- @property
- def child_id(self):
- return self._child_id
- @child_id.setter
- def child_id(self, value):
- self._child_id = value
- @property
- def child_name(self):
- return self._child_name
- @child_name.setter
- def child_name(self, value):
- self._child_name = value
- @property
- def class_name(self):
- return self._class_name
- @class_name.setter
- def class_name(self, value):
- self._class_name = value
- @property
- def contact_mobile(self):
- return self._contact_mobile
- @contact_mobile.setter
- def contact_mobile(self, value):
- self._contact_mobile = value
- @property
- def parent_uid(self):
- return self._parent_uid
- @parent_uid.setter
- def parent_uid(self, value):
- self._parent_uid = value
- @property
- def scene_code(self):
- return self._scene_code
- @scene_code.setter
- def scene_code(self, value):
- self._scene_code = value
- @property
- def school_id(self):
- return self._school_id
- @school_id.setter
- def school_id(self, value):
- self._school_id = value
- @property
- def student_no(self):
- return self._student_no
- @student_no.setter
- def student_no(self, value):
- self._student_no = value
- def to_alipay_dict(self):
- params = dict()
- if self.child_cert_no:
- if hasattr(self.child_cert_no, 'to_alipay_dict'):
- params['child_cert_no'] = self.child_cert_no.to_alipay_dict()
- else:
- params['child_cert_no'] = self.child_cert_no
- if self.child_cert_type:
- if hasattr(self.child_cert_type, 'to_alipay_dict'):
- params['child_cert_type'] = self.child_cert_type.to_alipay_dict()
- else:
- params['child_cert_type'] = self.child_cert_type
- if self.child_id:
- if hasattr(self.child_id, 'to_alipay_dict'):
- params['child_id'] = self.child_id.to_alipay_dict()
- else:
- params['child_id'] = self.child_id
- if self.child_name:
- if hasattr(self.child_name, 'to_alipay_dict'):
- params['child_name'] = self.child_name.to_alipay_dict()
- else:
- params['child_name'] = self.child_name
- if self.class_name:
- if hasattr(self.class_name, 'to_alipay_dict'):
- params['class_name'] = self.class_name.to_alipay_dict()
- else:
- params['class_name'] = self.class_name
- 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.parent_uid:
- if hasattr(self.parent_uid, 'to_alipay_dict'):
- params['parent_uid'] = self.parent_uid.to_alipay_dict()
- else:
- params['parent_uid'] = self.parent_uid
- if self.scene_code:
- if hasattr(self.scene_code, 'to_alipay_dict'):
- params['scene_code'] = self.scene_code.to_alipay_dict()
- else:
- params['scene_code'] = self.scene_code
- if self.school_id:
- if hasattr(self.school_id, 'to_alipay_dict'):
- params['school_id'] = self.school_id.to_alipay_dict()
- else:
- params['school_id'] = self.school_id
- if self.student_no:
- if hasattr(self.student_no, 'to_alipay_dict'):
- params['student_no'] = self.student_no.to_alipay_dict()
- else:
- params['student_no'] = self.student_no
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayCommerceKidsAccountBindModel()
- if 'child_cert_no' in d:
- o.child_cert_no = d['child_cert_no']
- if 'child_cert_type' in d:
- o.child_cert_type = d['child_cert_type']
- if 'child_id' in d:
- o.child_id = d['child_id']
- if 'child_name' in d:
- o.child_name = d['child_name']
- if 'class_name' in d:
- o.class_name = d['class_name']
- if 'contact_mobile' in d:
- o.contact_mobile = d['contact_mobile']
- if 'parent_uid' in d:
- o.parent_uid = d['parent_uid']
- if 'scene_code' in d:
- o.scene_code = d['scene_code']
- if 'school_id' in d:
- o.school_id = d['school_id']
- if 'student_no' in d:
- o.student_no = d['student_no']
- return o
|