#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * class AlipayPcreditLoanCommissionQueryModel(object): def __init__(self): self._account_id = None self._account_type = None self._biz_date = None self._channel = None self._enterprise_id = None self._out_request_no = None self._store_id = None @property def account_id(self): return self._account_id @account_id.setter def account_id(self, value): self._account_id = value @property def account_type(self): return self._account_type @account_type.setter def account_type(self, value): self._account_type = value @property def biz_date(self): return self._biz_date @biz_date.setter def biz_date(self, value): self._biz_date = value @property def channel(self): return self._channel @channel.setter def channel(self, value): self._channel = value @property def enterprise_id(self): return self._enterprise_id @enterprise_id.setter def enterprise_id(self, value): self._enterprise_id = value @property def out_request_no(self): return self._out_request_no @out_request_no.setter def out_request_no(self, value): self._out_request_no = value @property def store_id(self): return self._store_id @store_id.setter def store_id(self, value): self._store_id = value def to_alipay_dict(self): params = dict() if self.account_id: if hasattr(self.account_id, 'to_alipay_dict'): params['account_id'] = self.account_id.to_alipay_dict() else: params['account_id'] = self.account_id if self.account_type: if hasattr(self.account_type, 'to_alipay_dict'): params['account_type'] = self.account_type.to_alipay_dict() else: params['account_type'] = self.account_type if self.biz_date: if hasattr(self.biz_date, 'to_alipay_dict'): params['biz_date'] = self.biz_date.to_alipay_dict() else: params['biz_date'] = self.biz_date if self.channel: if hasattr(self.channel, 'to_alipay_dict'): params['channel'] = self.channel.to_alipay_dict() else: params['channel'] = self.channel if self.enterprise_id: if hasattr(self.enterprise_id, 'to_alipay_dict'): params['enterprise_id'] = self.enterprise_id.to_alipay_dict() else: params['enterprise_id'] = self.enterprise_id if self.out_request_no: if hasattr(self.out_request_no, 'to_alipay_dict'): params['out_request_no'] = self.out_request_no.to_alipay_dict() else: params['out_request_no'] = self.out_request_no if self.store_id: if hasattr(self.store_id, 'to_alipay_dict'): params['store_id'] = self.store_id.to_alipay_dict() else: params['store_id'] = self.store_id return params @staticmethod def from_alipay_dict(d): if not d: return None o = AlipayPcreditLoanCommissionQueryModel() if 'account_id' in d: o.account_id = d['account_id'] if 'account_type' in d: o.account_type = d['account_type'] if 'biz_date' in d: o.biz_date = d['biz_date'] if 'channel' in d: o.channel = d['channel'] if 'enterprise_id' in d: o.enterprise_id = d['enterprise_id'] if 'out_request_no' in d: o.out_request_no = d['out_request_no'] if 'store_id' in d: o.store_id = d['store_id'] return o