All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ice20201109.models.GetTemplateParamsResponseBody Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class GetTemplateParamsResponseBody extends TeaModel {
    @NameInMap("ParamList")
    public java.util.List paramList;

    /**
     * 

Id of the request

*/ @NameInMap("RequestId") public String requestId; @NameInMap("TemplateId") public String templateId; public static GetTemplateParamsResponseBody build(java.util.Map map) throws Exception { GetTemplateParamsResponseBody self = new GetTemplateParamsResponseBody(); return TeaModel.build(map, self); } public GetTemplateParamsResponseBody setParamList(java.util.List paramList) { this.paramList = paramList; return this; } public java.util.List getParamList() { return this.paramList; } public GetTemplateParamsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetTemplateParamsResponseBody setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public static class GetTemplateParamsResponseBodyParamList extends TeaModel { @NameInMap("Content") public String content; @NameInMap("CoverUrl") public String coverUrl; @NameInMap("Key") public String key; @NameInMap("MediaUrl") public String mediaUrl; @NameInMap("Type") public String type; public static GetTemplateParamsResponseBodyParamList build(java.util.Map map) throws Exception { GetTemplateParamsResponseBodyParamList self = new GetTemplateParamsResponseBodyParamList(); return TeaModel.build(map, self); } public GetTemplateParamsResponseBodyParamList setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public GetTemplateParamsResponseBodyParamList setCoverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } public String getCoverUrl() { return this.coverUrl; } public GetTemplateParamsResponseBodyParamList setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public GetTemplateParamsResponseBodyParamList setMediaUrl(String mediaUrl) { this.mediaUrl = mediaUrl; return this; } public String getMediaUrl() { return this.mediaUrl; } public GetTemplateParamsResponseBodyParamList setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy