12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class PromoOperatorInfo(object):
- def __init__(self):
- self._operator_id = None
- self._operator_type = None
- @property
- def operator_id(self):
- return self._operator_id
- @operator_id.setter
- def operator_id(self, value):
- self._operator_id = value
- @property
- def operator_type(self):
- return self._operator_type
- @operator_type.setter
- def operator_type(self, value):
- self._operator_type = value
- def to_alipay_dict(self):
- params = dict()
- 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
- if self.operator_type:
- if hasattr(self.operator_type, 'to_alipay_dict'):
- params['operator_type'] = self.operator_type.to_alipay_dict()
- else:
- params['operator_type'] = self.operator_type
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = PromoOperatorInfo()
- if 'operator_id' in d:
- o.operator_id = d['operator_id']
- if 'operator_type' in d:
- o.operator_type = d['operator_type']
- return o
|