com.aliyun.dingtalkservice_group_1_0.models.CreateGroupSetRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class CreateGroupSetRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("groupSetName")
public String groupSetName;
/**
* This parameter is required.
*/
@NameInMap("groupTemplateId")
public String groupTemplateId;
/**
* This parameter is required.
*/
@NameInMap("openTeamId")
public String openTeamId;
public static CreateGroupSetRequest build(java.util.Map map) throws Exception {
CreateGroupSetRequest self = new CreateGroupSetRequest();
return TeaModel.build(map, self);
}
public CreateGroupSetRequest setGroupSetName(String groupSetName) {
this.groupSetName = groupSetName;
return this;
}
public String getGroupSetName() {
return this.groupSetName;
}
public CreateGroupSetRequest setGroupTemplateId(String groupTemplateId) {
this.groupTemplateId = groupTemplateId;
return this;
}
public String getGroupTemplateId() {
return this.groupTemplateId;
}
public CreateGroupSetRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
}