Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
alipay-sdk-python
/
alipay
/
aop
/
api
/
response
/
AlipayMarketingCampaignDrawcampCreateResponse.py
|
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.response.AlipayResponse import AlipayResponse
class AlipayMarketingCampaignDrawcampCreateResponse(AlipayResponse):
def __init__(self):
super(AlipayMarketingCampaignDrawcampCreateResponse, self).__init__()
self._camp_id = None
@property
def camp_id(self):
return self._camp_id
@camp_id.setter
def camp_id(self, value):
self._camp_id = value
def parse_response_content(self, response_content):
response = super(AlipayMarketingCampaignDrawcampCreateResponse, self).parse_response_content(response_content)
if 'camp_id' in response:
self.camp_id = response['camp_id']