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