![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdevicemng_1_0.models.CreateChatRoomRequest 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.dingtalkdevicemng_1_0.models;
import com.aliyun.tea.*;
public class CreateChatRoomRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("chatGroupName")
public String chatGroupName;
/**
* This parameter is required.
*/
@NameInMap("deviceCodes")
public java.util.List deviceCodes;
@NameInMap("deviceTypeId")
public String deviceTypeId;
@NameInMap("ownerUserId")
public String ownerUserId;
@NameInMap("roleList")
public java.util.List roleList;
public static CreateChatRoomRequest build(java.util.Map map) throws Exception {
CreateChatRoomRequest self = new CreateChatRoomRequest();
return TeaModel.build(map, self);
}
public CreateChatRoomRequest setChatGroupName(String chatGroupName) {
this.chatGroupName = chatGroupName;
return this;
}
public String getChatGroupName() {
return this.chatGroupName;
}
public CreateChatRoomRequest setDeviceCodes(java.util.List deviceCodes) {
this.deviceCodes = deviceCodes;
return this;
}
public java.util.List getDeviceCodes() {
return this.deviceCodes;
}
public CreateChatRoomRequest setDeviceTypeId(String deviceTypeId) {
this.deviceTypeId = deviceTypeId;
return this;
}
public String getDeviceTypeId() {
return this.deviceTypeId;
}
public CreateChatRoomRequest setOwnerUserId(String ownerUserId) {
this.ownerUserId = ownerUserId;
return this;
}
public String getOwnerUserId() {
return this.ownerUserId;
}
public CreateChatRoomRequest setRoleList(java.util.List roleList) {
this.roleList = roleList;
return this;
}
public java.util.List getRoleList() {
return this.roleList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy