123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- from alipay.aop.api.domain.MaintainOrderStatusExtParams import MaintainOrderStatusExtParams
- class AlipayEcoMycarMaintainOrderstatusUpdateModel(object):
- def __init__(self):
- self._ext_param = None
- self._industry_code = None
- self._order_no = None
- self._order_status = None
- self._type = None
- @property
- def ext_param(self):
- return self._ext_param
- @ext_param.setter
- def ext_param(self, value):
- if isinstance(value, MaintainOrderStatusExtParams):
- self._ext_param = value
- else:
- self._ext_param = MaintainOrderStatusExtParams.from_alipay_dict(value)
- @property
- def industry_code(self):
- return self._industry_code
- @industry_code.setter
- def industry_code(self, value):
- self._industry_code = value
- @property
- def order_no(self):
- return self._order_no
- @order_no.setter
- def order_no(self, value):
- self._order_no = value
- @property
- def order_status(self):
- return self._order_status
- @order_status.setter
- def order_status(self, value):
- self._order_status = value
- @property
- def type(self):
- return self._type
- @type.setter
- def type(self, value):
- self._type = value
- def to_alipay_dict(self):
- params = dict()
- if self.ext_param:
- if hasattr(self.ext_param, 'to_alipay_dict'):
- params['ext_param'] = self.ext_param.to_alipay_dict()
- else:
- params['ext_param'] = self.ext_param
- if self.industry_code:
- if hasattr(self.industry_code, 'to_alipay_dict'):
- params['industry_code'] = self.industry_code.to_alipay_dict()
- else:
- params['industry_code'] = self.industry_code
- if self.order_no:
- if hasattr(self.order_no, 'to_alipay_dict'):
- params['order_no'] = self.order_no.to_alipay_dict()
- else:
- params['order_no'] = self.order_no
- if self.order_status:
- if hasattr(self.order_status, 'to_alipay_dict'):
- params['order_status'] = self.order_status.to_alipay_dict()
- else:
- params['order_status'] = self.order_status
- if self.type:
- if hasattr(self.type, 'to_alipay_dict'):
- params['type'] = self.type.to_alipay_dict()
- else:
- params['type'] = self.type
- return params
- @staticmethod
- def from_alipay_dict(d):
- if not d:
- return None
- o = AlipayEcoMycarMaintainOrderstatusUpdateModel()
- if 'ext_param' in d:
- o.ext_param = d['ext_param']
- if 'industry_code' in d:
- o.industry_code = d['industry_code']
- if 'order_no' in d:
- o.order_no = d['order_no']
- if 'order_status' in d:
- o.order_status = d['order_status']
- if 'type' in d:
- o.type = d['type']
- return o
|