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

com.aliyun.dingtalkservice_group_1_0.models.BoundTemplateToTeamRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class BoundTemplateToTeamRequest extends TeaModel {
    // 目标团队id
    @NameInMap("openTeamId")
    public String openTeamId;

    // 模板中的机器人配置信息
    @NameInMap("robotConfig")
    public String robotConfig;

    // 模板描述信息
    @NameInMap("templateDesc")
    public String templateDesc;

    // 模板id
    @NameInMap("templateId")
    public String templateId;

    // 模板名字
    @NameInMap("templateName")
    public String templateName;

    // 模板类型
    @NameInMap("templateType")
    public String templateType;

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

    public BoundTemplateToTeamRequest setOpenTeamId(String openTeamId) {
        this.openTeamId = openTeamId;
        return this;
    }
    public String getOpenTeamId() {
        return this.openTeamId;
    }

    public BoundTemplateToTeamRequest setRobotConfig(String robotConfig) {
        this.robotConfig = robotConfig;
        return this;
    }
    public String getRobotConfig() {
        return this.robotConfig;
    }

    public BoundTemplateToTeamRequest setTemplateDesc(String templateDesc) {
        this.templateDesc = templateDesc;
        return this;
    }
    public String getTemplateDesc() {
        return this.templateDesc;
    }

    public BoundTemplateToTeamRequest setTemplateId(String templateId) {
        this.templateId = templateId;
        return this;
    }
    public String getTemplateId() {
        return this.templateId;
    }

    public BoundTemplateToTeamRequest setTemplateName(String templateName) {
        this.templateName = templateName;
        return this;
    }
    public String getTemplateName() {
        return this.templateName;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy