123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.constant.ParamConstants import *
- class KbAdvertChannelResponse(object):
- def __init__(self):
- self._channel_id = None
- self._memo = None
- self._name = None
- self._status = None
- self._type = None
- @property
- def channel_id(self):
- return self._channel_id
- @channel_id.setter
- def channel_id(self, value):
- self._channel_id = value
- @property
- def memo(self):
- return self._memo
- @memo.setter
- def memo(self, value):
- self._memo = value
- @property
- def name(self):
- return self._name
- @name.setter
- def name(self, value):
- self._name = value
- @property
- def status(self):
- return self._status
- @status.setter
- def status(self, value):
- self._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.channel_id:
- if hasattr(self.channel_id, 'to_alipay_dict'):
- params['channel_id'] = self.channel_id.to_alipay_dict()
- else:
- params['channel_id'] = self.channel_id
- if self.memo:
- if hasattr(self.memo, 'to_alipay_dict'):
- params['memo'] = self.memo.to_alipay_dict()
- else:
- params['memo'] = self.memo
- if self.name:
- if hasattr(self.name, 'to_alipay_dict'):
- params['name'] = self.name.to_alipay_dict()
- else:
- params['name'] = self.name
- if self.status:
- if hasattr(self.status, 'to_alipay_dict'):
- params['status'] = self.status.to_alipay_dict()
- else:
- params['status'] = self.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 = KbAdvertChannelResponse()
- if 'channel_id' in d:
- o.channel_id = d['channel_id']
- if 'memo' in d:
- o.memo = d['memo']
- if 'name' in d:
- o.name = d['name']
- if 'status' in d:
- o.status = d['status']
- if 'type' in d:
- o.type = d['type']
- return o
|