123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class ZhimaCreditEpSceneTradeConsultModel(object):
- def __init__(self):
- self._apply_amount = None
- self._biz_ext_param = None
- self._customer_rating_no = None
- self._out_order_no = None
- self._product_code = None
- @property
- def apply_amount(self):
- return self._apply_amount
- @apply_amount.setter
- def apply_amount(self, value):
- self._apply_amount = value
- @property
- def biz_ext_param(self):
- return self._biz_ext_param
- @biz_ext_param.setter
- def biz_ext_param(self, value):
- self._biz_ext_param = value
- @property
- def customer_rating_no(self):
- return self._customer_rating_no
- @customer_rating_no.setter
- def customer_rating_no(self, value):
- self._customer_rating_no = value
- @property
- def out_order_no(self):
- return self._out_order_no
- @out_order_no.setter
- def out_order_no(self, value):
- self._out_order_no = value
- @property
- def product_code(self):
- return self._product_code
- @product_code.setter
- def product_code(self, value):
- self._product_code = value
- def to_alipay_dict(self):
- params = dict()
- if self.apply_amount:
- if hasattr(self.apply_amount, 'to_alipay_dict'):
- params['apply_amount'] = self.apply_amount.to_alipay_dict()
- else:
- params['apply_amount'] = self.apply_amount
- if self.biz_ext_param:
- if hasattr(self.biz_ext_param, 'to_alipay_dict'):
- params['biz_ext_param'] = self.biz_ext_param.to_alipay_dict()
- else:
- params['biz_ext_param'] = self.biz_ext_param
- if self.customer_rating_no:
- if hasattr(self.customer_rating_no, 'to_alipay_dict'):
- params['customer_rating_no'] = self.customer_rating_no.to_alipay_dict()
- else:
- params['customer_rating_no'] = self.customer_rating_no
- if self.out_order_no:
- if hasattr(self.out_order_no, 'to_alipay_dict'):
- params['out_order_no'] = self.out_order_no.to_alipay_dict()
- else:
- params['out_order_no'] = self.out_order_no
- if self.product_code:
- if hasattr(self.product_code, 'to_alipay_dict'):
- params['product_code'] = self.product_code.to_alipay_dict()
- else:
- params['product_code'] = self.product_code
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = ZhimaCreditEpSceneTradeConsultModel()
- if 'apply_amount' in d:
- o.apply_amount = d['apply_amount']
- if 'biz_ext_param' in d:
- o.biz_ext_param = d['biz_ext_param']
- if 'customer_rating_no' in d:
- o.customer_rating_no = d['customer_rating_no']
- if 'out_order_no' in d:
- o.out_order_no = d['out_order_no']
- if 'product_code' in d:
- o.product_code = d['product_code']
- return o
|