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

com.aliyun.dingtalkdoc_1_0.models.GetTemplateByIdResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetTemplateByIdResponseBody extends TeaModel {
    @NameInMap("coverUrl")
    public String coverUrl;

    @NameInMap("createTime")
    public Long createTime;

    @NameInMap("docType")
    public String docType;

    @NameInMap("id")
    public String id;

    @NameInMap("templateType")
    public String templateType;

    @NameInMap("title")
    public String title;

    @NameInMap("updateTime")
    public Long updateTime;

    @NameInMap("workspaceId")
    public String workspaceId;

    public static GetTemplateByIdResponseBody build(java.util.Map map) throws Exception {
        GetTemplateByIdResponseBody self = new GetTemplateByIdResponseBody();
        return TeaModel.build(map, self);
    }

    public GetTemplateByIdResponseBody setCoverUrl(String coverUrl) {
        this.coverUrl = coverUrl;
        return this;
    }
    public String getCoverUrl() {
        return this.coverUrl;
    }

    public GetTemplateByIdResponseBody setCreateTime(Long createTime) {
        this.createTime = createTime;
        return this;
    }
    public Long getCreateTime() {
        return this.createTime;
    }

    public GetTemplateByIdResponseBody setDocType(String docType) {
        this.docType = docType;
        return this;
    }
    public String getDocType() {
        return this.docType;
    }

    public GetTemplateByIdResponseBody setId(String id) {
        this.id = id;
        return this;
    }
    public String getId() {
        return this.id;
    }

    public GetTemplateByIdResponseBody setTemplateType(String templateType) {
        this.templateType = templateType;
        return this;
    }
    public String getTemplateType() {
        return this.templateType;
    }

    public GetTemplateByIdResponseBody setTitle(String title) {
        this.title = title;
        return this;
    }
    public String getTitle() {
        return this.title;
    }

    public GetTemplateByIdResponseBody setUpdateTime(Long updateTime) {
        this.updateTime = updateTime;
        return this;
    }
    public Long getUpdateTime() {
        return this.updateTime;
    }

    public GetTemplateByIdResponseBody setWorkspaceId(String workspaceId) {
        this.workspaceId = workspaceId;
        return this;
    }
    public String getWorkspaceId() {
        return this.workspaceId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy