12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayFundStudentloanRepayQueryModel(object):
- def __init__(self):
- self._cert_no = None
- self._logon_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 logon_id(self):
- return self._logon_id
- @logon_id.setter
- def logon_id(self, value):
- self._logon_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.logon_id:
- if hasattr(self.logon_id, 'to_alipay_dict'):
- params['logon_id'] = self.logon_id.to_alipay_dict()
- else:
- params['logon_id'] = self.logon_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayFundStudentloanRepayQueryModel()
- if 'cert_no' in d:
- o.cert_no = d['cert_no']
- if 'logon_id' in d:
- o.logon_id = d['logon_id']
- return o
|