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

com.aliyun.dingtalkdevicemng_1_0.models.CreateChatRoomRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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