12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class DeviceSyncPayload(object):
- def __init__(self):
- self._action = None
- self._device_id = None
- @property
- def action(self):
- return self._action
- @action.setter
- def action(self, value):
- self._action = value
- @property
- def device_id(self):
- return self._device_id
- @device_id.setter
- def device_id(self, value):
- self._device_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.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
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = DeviceSyncPayload()
- if 'action' in d:
- o.action = d['action']
- if 'device_id' in d:
- o.device_id = d['device_id']
- return o
|