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