123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayOfflineProviderEquipmentAuthRemoveModel(object):
- def __init__(self):
- self._device_id = None
- self._device_type = None
- self._ext_info = None
- self._merchant_pid = None
- self._operator = None
- self._operator_id = None
- @property
- def device_id(self):
- return self._device_id
- @device_id.setter
- def device_id(self, value):
- self._device_id = value
- @property
- def device_type(self):
- return self._device_type
- @device_type.setter
- def device_type(self, value):
- self._device_type = value
- @property
- def ext_info(self):
- return self._ext_info
- @ext_info.setter
- def ext_info(self, value):
- self._ext_info = value
- @property
- def merchant_pid(self):
- return self._merchant_pid
- @merchant_pid.setter
- def merchant_pid(self, value):
- self._merchant_pid = value
- @property
- def operator(self):
- return self._operator
- @operator.setter
- def operator(self, value):
- self._operator = value
- @property
- def operator_id(self):
- return self._operator_id
- @operator_id.setter
- def operator_id(self, value):
- self._operator_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.device_id:
- if hasattr(self.device_id, 'to_alipay_dict'):
- params['device_id'] = self.device_id.to_alipay_dict()
- else:
- params['device_id'] = self.device_id
- if self.device_type:
- if hasattr(self.device_type, 'to_alipay_dict'):
- params['device_type'] = self.device_type.to_alipay_dict()
- else:
- params['device_type'] = self.device_type
- if self.ext_info:
- if hasattr(self.ext_info, 'to_alipay_dict'):
- params['ext_info'] = self.ext_info.to_alipay_dict()
- else:
- params['ext_info'] = self.ext_info
- if self.merchant_pid:
- if hasattr(self.merchant_pid, 'to_alipay_dict'):
- params['merchant_pid'] = self.merchant_pid.to_alipay_dict()
- else:
- params['merchant_pid'] = self.merchant_pid
- if self.operator:
- if hasattr(self.operator, 'to_alipay_dict'):
- params['operator'] = self.operator.to_alipay_dict()
- else:
- params['operator'] = self.operator
- if self.operator_id:
- if hasattr(self.operator_id, 'to_alipay_dict'):
- params['operator_id'] = self.operator_id.to_alipay_dict()
- else:
- params['operator_id'] = self.operator_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayOfflineProviderEquipmentAuthRemoveModel()
- if 'device_id' in d:
- o.device_id = d['device_id']
- if 'device_type' in d:
- o.device_type = d['device_type']
- if 'ext_info' in d:
- o.ext_info = d['ext_info']
- if 'merchant_pid' in d:
- o.merchant_pid = d['merchant_pid']
- if 'operator' in d:
- o.operator = d['operator']
- if 'operator_id' in d:
- o.operator_id = d['operator_id']
- return o
|