![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetOutGroupsByPageResponseBody 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 GetOutGroupsByPageResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("responseBody")
public GetOutGroupsByPageResponseBodyResponseBody responseBody;
public static GetOutGroupsByPageResponseBody build(java.util.Map map) throws Exception {
GetOutGroupsByPageResponseBody self = new GetOutGroupsByPageResponseBody();
return TeaModel.build(map, self);
}
public GetOutGroupsByPageResponseBody setResponseBody(GetOutGroupsByPageResponseBodyResponseBody responseBody) {
this.responseBody = responseBody;
return this;
}
public GetOutGroupsByPageResponseBodyResponseBody getResponseBody() {
return this.responseBody;
}
public static class GetOutGroupsByPageResponseBodyResponseBodyGroupList extends TeaModel {
/**
* example:
* { "text": { "content": "这是一段文本" } }
*/
@NameInMap("openConversationId")
public String openConversationId;
public static GetOutGroupsByPageResponseBodyResponseBodyGroupList build(java.util.Map map) throws Exception {
GetOutGroupsByPageResponseBodyResponseBodyGroupList self = new GetOutGroupsByPageResponseBodyResponseBodyGroupList();
return TeaModel.build(map, self);
}
public GetOutGroupsByPageResponseBodyResponseBodyGroupList setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
}
public static class GetOutGroupsByPageResponseBodyResponseBody extends TeaModel {
@NameInMap("groupList")
public java.util.List groupList;
/**
* example:
* 10
*/
@NameInMap("total")
public Integer total;
public static GetOutGroupsByPageResponseBodyResponseBody build(java.util.Map map) throws Exception {
GetOutGroupsByPageResponseBodyResponseBody self = new GetOutGroupsByPageResponseBodyResponseBody();
return TeaModel.build(map, self);
}
public GetOutGroupsByPageResponseBodyResponseBody setGroupList(java.util.List groupList) {
this.groupList = groupList;
return this;
}
public java.util.List getGroupList() {
return this.groupList;
}
public GetOutGroupsByPageResponseBodyResponseBody setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy