#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * class AlipayMerchantOrderDigestConsumerBatchqueryModel(object): def __init__(self): self._buyer_id = None self._end_time = None self._merchant_app_id = None self._order_source = None self._size = None self._start_time = None @property def buyer_id(self): return self._buyer_id @buyer_id.setter def buyer_id(self, value): self._buyer_id = value @property def end_time(self): return self._end_time @end_time.setter def end_time(self, value): self._end_time = value @property def merchant_app_id(self): return self._merchant_app_id @merchant_app_id.setter def merchant_app_id(self, value): self._merchant_app_id = value @property def order_source(self): return self._order_source @order_source.setter def order_source(self, value): self._order_source = value @property def size(self): return self._size @size.setter def size(self, value): self._size = value @property def start_time(self): return self._start_time @start_time.setter def start_time(self, value): self._start_time = value def to_alipay_dict(self): params = dict() if self.buyer_id: if hasattr(self.buyer_id, 'to_alipay_dict'): params['buyer_id'] = self.buyer_id.to_alipay_dict() else: params['buyer_id'] = self.buyer_id if self.end_time: if hasattr(self.end_time, 'to_alipay_dict'): params['end_time'] = self.end_time.to_alipay_dict() else: params['end_time'] = self.end_time if self.merchant_app_id: if hasattr(self.merchant_app_id, 'to_alipay_dict'): params['merchant_app_id'] = self.merchant_app_id.to_alipay_dict() else: params['merchant_app_id'] = self.merchant_app_id if self.order_source: if hasattr(self.order_source, 'to_alipay_dict'): params['order_source'] = self.order_source.to_alipay_dict() else: params['order_source'] = self.order_source if self.size: if hasattr(self.size, 'to_alipay_dict'): params['size'] = self.size.to_alipay_dict() else: params['size'] = self.size if self.start_time: if hasattr(self.start_time, 'to_alipay_dict'): params['start_time'] = self.start_time.to_alipay_dict() else: params['start_time'] = self.start_time return params @staticmethod def from_alipay_dict(d): if not d: return None o = AlipayMerchantOrderDigestConsumerBatchqueryModel() if 'buyer_id' in d: o.buyer_id = d['buyer_id'] if 'end_time' in d: o.end_time = d['end_time'] if 'merchant_app_id' in d: o.merchant_app_id = d['merchant_app_id'] if 'order_source' in d: o.order_source = d['order_source'] if 'size' in d: o.size = d['size'] if 'start_time' in d: o.start_time = d['start_time'] return o