com.aliyun.dingtalkimpaas_1_0.models.CreateGroupResponseBody 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class CreateGroupResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("chatId")
public String chatId;
/**
* This parameter is required.
*/
@NameInMap("conversationId")
public String conversationId;
/**
* This parameter is required.
*/
@NameInMap("createTime")
public Long createTime;
public static CreateGroupResponseBody build(java.util.Map map) throws Exception {
CreateGroupResponseBody self = new CreateGroupResponseBody();
return TeaModel.build(map, self);
}
public CreateGroupResponseBody setChatId(String chatId) {
this.chatId = chatId;
return this;
}
public String getChatId() {
return this.chatId;
}
public CreateGroupResponseBody setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public CreateGroupResponseBody setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
}