![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkresident_1_0.models.GetConversationIdRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class GetConversationIdRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* chatd575783672bb40c005ba4e8b2*****ab
*/
@NameInMap("chatId")
public String chatId;
public static GetConversationIdRequest build(java.util.Map map) throws Exception {
GetConversationIdRequest self = new GetConversationIdRequest();
return TeaModel.build(map, self);
}
public GetConversationIdRequest setChatId(String chatId) {
this.chatId = chatId;
return this;
}
public String getChatId() {
return this.chatId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy