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