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 AlipayAssetCardNewtemplateCreateResponse(AlipayResponse):
def __init__(self):
super(AlipayAssetCardNewtemplateCreateResponse, self).__init__()
self._template_id = None
@property
def template_id(self):
return self._template_id
@template_id.setter
def template_id(self, value):
self._template_id = value
def parse_response_content(self, response_content):
response = super(AlipayAssetCardNewtemplateCreateResponse, self).parse_response_content(response_content)
if 'template_id' in response:
self.template_id = response['template_id']