com.aliyun.dingtalkcrm_1_0.models.JoinGroupSetResponseBody 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class JoinGroupSetResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* abc123
*/
@NameInMap("chatId")
public String chatId;
/**
* This parameter is required.
*
* example:
* abc123
*/
@NameInMap("openConversationId")
public String openConversationId;
public static JoinGroupSetResponseBody build(java.util.Map map) throws Exception {
JoinGroupSetResponseBody self = new JoinGroupSetResponseBody();
return TeaModel.build(map, self);
}
public JoinGroupSetResponseBody setChatId(String chatId) {
this.chatId = chatId;
return this;
}
public String getChatId() {
return this.chatId;
}
public JoinGroupSetResponseBody setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
}