123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class AlipayMsaasMediarecogMmtcaftscvTemplateVerifyModel(object):
- def __init__(self):
- self._algorithm_goods_ids = None
- self._good_count = None
- self._machine_type_id = None
- self._scene_id = None
- self._template_id = None
- @property
- def algorithm_goods_ids(self):
- return self._algorithm_goods_ids
- @algorithm_goods_ids.setter
- def algorithm_goods_ids(self, value):
- if isinstance(value, list):
- self._algorithm_goods_ids = list()
- for i in value:
- self._algorithm_goods_ids.append(i)
- @property
- def good_count(self):
- return self._good_count
- @good_count.setter
- def good_count(self, value):
- self._good_count = value
- @property
- def machine_type_id(self):
- return self._machine_type_id
- @machine_type_id.setter
- def machine_type_id(self, value):
- self._machine_type_id = value
- @property
- def scene_id(self):
- return self._scene_id
- @scene_id.setter
- def scene_id(self, value):
- self._scene_id = value
- @property
- def template_id(self):
- return self._template_id
- @template_id.setter
- def template_id(self, value):
- self._template_id = value
- def to_alipay_dict(self):
- params = dict()
- if self.algorithm_goods_ids:
- if isinstance(self.algorithm_goods_ids, list):
- for i in range(0, len(self.algorithm_goods_ids)):
- element = self.algorithm_goods_ids[i]
- if hasattr(element, 'to_alipay_dict'):
- self.algorithm_goods_ids[i] = element.to_alipay_dict()
- if hasattr(self.algorithm_goods_ids, 'to_alipay_dict'):
- params['algorithm_goods_ids'] = self.algorithm_goods_ids.to_alipay_dict()
- else:
- params['algorithm_goods_ids'] = self.algorithm_goods_ids
- if self.good_count:
- if hasattr(self.good_count, 'to_alipay_dict'):
- params['good_count'] = self.good_count.to_alipay_dict()
- else:
- params['good_count'] = self.good_count
- if self.machine_type_id:
- if hasattr(self.machine_type_id, 'to_alipay_dict'):
- params['machine_type_id'] = self.machine_type_id.to_alipay_dict()
- else:
- params['machine_type_id'] = self.machine_type_id
- if self.scene_id:
- if hasattr(self.scene_id, 'to_alipay_dict'):
- params['scene_id'] = self.scene_id.to_alipay_dict()
- else:
- params['scene_id'] = self.scene_id
- if self.template_id:
- if hasattr(self.template_id, 'to_alipay_dict'):
- params['template_id'] = self.template_id.to_alipay_dict()
- else:
- params['template_id'] = self.template_id
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayMsaasMediarecogMmtcaftscvTemplateVerifyModel()
- if 'algorithm_goods_ids' in d:
- o.algorithm_goods_ids = d['algorithm_goods_ids']
- if 'good_count' in d:
- o.good_count = d['good_count']
- if 'machine_type_id' in d:
- o.machine_type_id = d['machine_type_id']
- if 'scene_id' in d:
- o.scene_id = d['scene_id']
- if 'template_id' in d:
- o.template_id = d['template_id']
- return o
|