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