12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayOpenPublicLifeLabelCreateModel(object):
- def __init__(self):
- self._data_type = None
- self._label_name = None
- @property
- def data_type(self):
- return self._data_type
- @data_type.setter
- def data_type(self, value):
- self._data_type = value
- @property
- def label_name(self):
- return self._label_name
- @label_name.setter
- def label_name(self, value):
- self._label_name = value
- def to_alipay_dict(self):
- params = dict()
- if self.data_type:
- if hasattr(self.data_type, 'to_alipay_dict'):
- params['data_type'] = self.data_type.to_alipay_dict()
- else:
- params['data_type'] = self.data_type
- if self.label_name:
- if hasattr(self.label_name, 'to_alipay_dict'):
- params['label_name'] = self.label_name.to_alipay_dict()
- else:
- params['label_name'] = self.label_name
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayOpenPublicLifeLabelCreateModel()
- if 'data_type' in d:
- o.data_type = d['data_type']
- if 'label_name' in d:
- o.label_name = d['label_name']
- return o
|