Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
alipay-sdk-python
/
alipay
/
aop
/
api
/
response
/
KoubeiAdvertCommissionSpecialadvcontentModifyResponse.py
|
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.response.AlipayResponse import AlipayResponse
from alipay.aop.api.domain.KbAdvertSpecialAdvContentModifyResponse import KbAdvertSpecialAdvContentModifyResponse
class KoubeiAdvertCommissionSpecialadvcontentModifyResponse(AlipayResponse):
def __init__(self):
super(KoubeiAdvertCommissionSpecialadvcontentModifyResponse, self).__init__()
self._data = None
@property
def data(self):
return self._data
@data.setter
def data(self, value):
if isinstance(value, list):
self._data = list()
for i in value:
if isinstance(i, KbAdvertSpecialAdvContentModifyResponse):
self._data.append(i)
else:
self._data.append(KbAdvertSpecialAdvContentModifyResponse.from_alipay_dict(i))
def parse_response_content(self, response_content):
response = super(KoubeiAdvertCommissionSpecialadvcontentModifyResponse, self).parse_response_content(response_content)
if 'data' in response:
self.data = response['data']