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