123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.response.AlipayResponse import AlipayResponse
- class KoubeiMarketingAdvertisingQueryResponse(AlipayResponse):
- def __init__(self):
- super(KoubeiMarketingAdvertisingQueryResponse, self).__init__()
- self._action_url = None
- self._ad_code = None
- self._ad_rules = None
- self._content = None
- self._content_type = None
- self._end_time = None
- self._height = None
- self._start_time = None
- self._status = None
- @property
- def action_url(self):
- return self._action_url
- @action_url.setter
- def action_url(self, value):
- self._action_url = value
- @property
- def ad_code(self):
- return self._ad_code
- @ad_code.setter
- def ad_code(self, value):
- self._ad_code = value
- @property
- def ad_rules(self):
- return self._ad_rules
- @ad_rules.setter
- def ad_rules(self, value):
- self._ad_rules = value
- @property
- def content(self):
- return self._content
- @content.setter
- def content(self, value):
- self._content = value
- @property
- def content_type(self):
- return self._content_type
- @content_type.setter
- def content_type(self, value):
- self._content_type = value
- @property
- def end_time(self):
- return self._end_time
- @end_time.setter
- def end_time(self, value):
- self._end_time = value
- @property
- def height(self):
- return self._height
- @height.setter
- def height(self, value):
- self._height = value
- @property
- def start_time(self):
- return self._start_time
- @start_time.setter
- def start_time(self, value):
- self._start_time = value
- @property
- def status(self):
- return self._status
- @status.setter
- def status(self, value):
- self._status = value
- def parse_response_content(self, response_content):
- response = super(KoubeiMarketingAdvertisingQueryResponse, self).parse_response_content(response_content)
- if 'action_url' in response:
- self.action_url = response['action_url']
- if 'ad_code' in response:
- self.ad_code = response['ad_code']
- if 'ad_rules' in response:
- self.ad_rules = response['ad_rules']
- if 'content' in response:
- self.content = response['content']
- if 'content_type' in response:
- self.content_type = response['content_type']
- if 'end_time' in response:
- self.end_time = response['end_time']
- if 'height' in response:
- self.height = response['height']
- if 'start_time' in response:
- self.start_time = response['start_time']
- if 'status' in response:
- self.status = response['status']
|