#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * class MerchantIDInfo(object): def __init__(self): self._pid = None self._seller_id = None self._sub_merchant_id = None @property def pid(self): return self._pid @pid.setter def pid(self, value): self._pid = value @property def seller_id(self): return self._seller_id @seller_id.setter def seller_id(self, value): self._seller_id = value @property def sub_merchant_id(self): return self._sub_merchant_id @sub_merchant_id.setter def sub_merchant_id(self, value): self._sub_merchant_id = value def to_alipay_dict(self): params = dict() if self.pid: if hasattr(self.pid, 'to_alipay_dict'): params['pid'] = self.pid.to_alipay_dict() else: params['pid'] = self.pid if self.seller_id: if hasattr(self.seller_id, 'to_alipay_dict'): params['seller_id'] = self.seller_id.to_alipay_dict() else: params['seller_id'] = self.seller_id if self.sub_merchant_id: if hasattr(self.sub_merchant_id, 'to_alipay_dict'): params['sub_merchant_id'] = self.sub_merchant_id.to_alipay_dict() else: params['sub_merchant_id'] = self.sub_merchant_id return params @staticmethod def from_alipay_dict(d): if not d: return None o = MerchantIDInfo() if 'pid' in d: o.pid = d['pid'] if 'seller_id' in d: o.seller_id = d['seller_id'] if 'sub_merchant_id' in d: o.sub_merchant_id = d['sub_merchant_id'] return o