12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- from alipay.aop.api.domain.Matcher import Matcher
- class AlipayOpenPublicMatchuserLabelDeleteModel(object):
- def __init__(self):
- self._label_id = None
- self._matchers = None
- @property
- def label_id(self):
- return self._label_id
- @label_id.setter
- def label_id(self, value):
- self._label_id = value
- @property
- def matchers(self):
- return self._matchers
- @matchers.setter
- def matchers(self, value):
- if isinstance(value, list):
- self._matchers = list()
- for i in value:
- if isinstance(i, Matcher):
- self._matchers.append(i)
- else:
- self._matchers.append(Matcher.from_alipay_dict(i))
- def to_alipay_dict(self):
- params = dict()
- if self.label_id:
- if hasattr(self.label_id, 'to_alipay_dict'):
- params['label_id'] = self.label_id.to_alipay_dict()
- else:
- params['label_id'] = self.label_id
- if self.matchers:
- if isinstance(self.matchers, list):
- for i in range(0, len(self.matchers)):
- element = self.matchers[i]
- if hasattr(element, 'to_alipay_dict'):
- self.matchers[i] = element.to_alipay_dict()
- if hasattr(self.matchers, 'to_alipay_dict'):
- params['matchers'] = self.matchers.to_alipay_dict()
- else:
- params['matchers'] = self.matchers
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayOpenPublicMatchuserLabelDeleteModel()
- if 'label_id' in d:
- o.label_id = d['label_id']
- if 'matchers' in d:
- o.matchers = d['matchers']
- return o
|