com.aliyun.dingtalkservice_group_1_0.models.CreateGroupRequest 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 CreateGroupRequest extends TeaModel {
/**
* example:
* PID123cjj2
*/
@NameInMap("groupBizId")
public String groupBizId;
/**
* This parameter is required.
*
* example:
* 测试服务群
*/
@NameInMap("groupName")
public String groupName;
@NameInMap("groupTagNames")
public java.util.List groupTagNames;
@NameInMap("memberStaffIds")
public java.util.List memberStaffIds;
/**
* This parameter is required.
*
* example:
* Jciwnfw
*/
@NameInMap("openGroupSetId")
public String openGroupSetId;
/**
* This parameter is required.
*
* example:
* Jciwnfw
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* This parameter is required.
*
* example:
* manager123
*/
@NameInMap("ownerStaffId")
public String ownerStaffId;
public static CreateGroupRequest build(java.util.Map map) throws Exception {
CreateGroupRequest self = new CreateGroupRequest();
return TeaModel.build(map, self);
}
public CreateGroupRequest setGroupBizId(String groupBizId) {
this.groupBizId = groupBizId;
return this;
}
public String getGroupBizId() {
return this.groupBizId;
}
public CreateGroupRequest setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public CreateGroupRequest setGroupTagNames(java.util.List groupTagNames) {
this.groupTagNames = groupTagNames;
return this;
}
public java.util.List getGroupTagNames() {
return this.groupTagNames;
}
public CreateGroupRequest setMemberStaffIds(java.util.List memberStaffIds) {
this.memberStaffIds = memberStaffIds;
return this;
}
public java.util.List getMemberStaffIds() {
return this.memberStaffIds;
}
public CreateGroupRequest setOpenGroupSetId(String openGroupSetId) {
this.openGroupSetId = openGroupSetId;
return this;
}
public String getOpenGroupSetId() {
return this.openGroupSetId;
}
public CreateGroupRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public CreateGroupRequest setOwnerStaffId(String ownerStaffId) {
this.ownerStaffId = ownerStaffId;
return this;
}
public String getOwnerStaffId() {
return this.ownerStaffId;
}
}