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