![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetConversationDetailResponseBody 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetConversationDetailResponseBody extends TeaModel {
@NameInMap("result")
public GetConversationDetailResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static GetConversationDetailResponseBody build(java.util.Map map) throws Exception {
GetConversationDetailResponseBody self = new GetConversationDetailResponseBody();
return TeaModel.build(map, self);
}
public GetConversationDetailResponseBody setResult(GetConversationDetailResponseBodyResult result) {
this.result = result;
return this;
}
public GetConversationDetailResponseBodyResult getResult() {
return this.result;
}
public GetConversationDetailResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetConversationDetailResponseBodyResultMultipleCategoryList extends TeaModel {
/**
* example:
* 0
*/
@NameInMap("categoryId")
public Long categoryId;
/**
* example:
* 全部
*/
@NameInMap("categoryName")
public String categoryName;
@NameInMap("order")
public Integer order;
public static GetConversationDetailResponseBodyResultMultipleCategoryList build(java.util.Map map) throws Exception {
GetConversationDetailResponseBodyResultMultipleCategoryList self = new GetConversationDetailResponseBodyResultMultipleCategoryList();
return TeaModel.build(map, self);
}
public GetConversationDetailResponseBodyResultMultipleCategoryList setCategoryId(Long categoryId) {
this.categoryId = categoryId;
return this;
}
public Long getCategoryId() {
return this.categoryId;
}
public GetConversationDetailResponseBodyResultMultipleCategoryList setCategoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
public String getCategoryName() {
return this.categoryName;
}
public GetConversationDetailResponseBodyResultMultipleCategoryList setOrder(Integer order) {
this.order = order;
return this;
}
public Integer getOrder() {
return this.order;
}
}
public static class GetConversationDetailResponseBodyResult extends TeaModel {
/**
* example:
* -1
*/
@NameInMap("categoryId")
public Long categoryId;
/**
* example:
* categoryName
*/
@NameInMap("categoryName")
public String categoryName;
@NameInMap("groupCode")
public String groupCode;
/**
* example:
* 5
*/
@NameInMap("groupMembersCnt")
public Integer groupMembersCnt;
/**
* example:
* 5
*/
@NameInMap("groupName")
public String groupName;
/**
* example:
* groupOwnerName
*/
@NameInMap("groupOwnerName")
public String groupOwnerName;
/**
* example:
* groupOwnerUserId
*/
@NameInMap("groupOwnerUserId")
public String groupOwnerUserId;
@NameInMap("isKpConversation")
public Boolean isKpConversation;
/**
* example:
* 1
*/
@NameInMap("manageSign")
public Integer manageSign;
@NameInMap("multipleCategoryList")
public java.util.List multipleCategoryList;
/**
* This parameter is required.
*
* example:
* cidxxx
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* 1
*/
@NameInMap("order")
public Integer order;
@NameInMap("status")
public Integer status;
public static GetConversationDetailResponseBodyResult build(java.util.Map map) throws Exception {
GetConversationDetailResponseBodyResult self = new GetConversationDetailResponseBodyResult();
return TeaModel.build(map, self);
}
public GetConversationDetailResponseBodyResult setCategoryId(Long categoryId) {
this.categoryId = categoryId;
return this;
}
public Long getCategoryId() {
return this.categoryId;
}
public GetConversationDetailResponseBodyResult setCategoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
public String getCategoryName() {
return this.categoryName;
}
public GetConversationDetailResponseBodyResult setGroupCode(String groupCode) {
this.groupCode = groupCode;
return this;
}
public String getGroupCode() {
return this.groupCode;
}
public GetConversationDetailResponseBodyResult setGroupMembersCnt(Integer groupMembersCnt) {
this.groupMembersCnt = groupMembersCnt;
return this;
}
public Integer getGroupMembersCnt() {
return this.groupMembersCnt;
}
public GetConversationDetailResponseBodyResult setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public GetConversationDetailResponseBodyResult setGroupOwnerName(String groupOwnerName) {
this.groupOwnerName = groupOwnerName;
return this;
}
public String getGroupOwnerName() {
return this.groupOwnerName;
}
public GetConversationDetailResponseBodyResult setGroupOwnerUserId(String groupOwnerUserId) {
this.groupOwnerUserId = groupOwnerUserId;
return this;
}
public String getGroupOwnerUserId() {
return this.groupOwnerUserId;
}
public GetConversationDetailResponseBodyResult setIsKpConversation(Boolean isKpConversation) {
this.isKpConversation = isKpConversation;
return this;
}
public Boolean getIsKpConversation() {
return this.isKpConversation;
}
public GetConversationDetailResponseBodyResult setManageSign(Integer manageSign) {
this.manageSign = manageSign;
return this;
}
public Integer getManageSign() {
return this.manageSign;
}
public GetConversationDetailResponseBodyResult setMultipleCategoryList(java.util.List multipleCategoryList) {
this.multipleCategoryList = multipleCategoryList;
return this;
}
public java.util.List getMultipleCategoryList() {
return this.multipleCategoryList;
}
public GetConversationDetailResponseBodyResult setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetConversationDetailResponseBodyResult setOrder(Integer order) {
this.order = order;
return this;
}
public Integer getOrder() {
return this.order;
}
public GetConversationDetailResponseBodyResult setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy