![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetOutsideAuditGroupMessageByPageResponseBody 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 GetOutsideAuditGroupMessageByPageResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("responseBody")
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBody responseBody;
public static GetOutsideAuditGroupMessageByPageResponseBody build(java.util.Map map) throws Exception {
GetOutsideAuditGroupMessageByPageResponseBody self = new GetOutsideAuditGroupMessageByPageResponseBody();
return TeaModel.build(map, self);
}
public GetOutsideAuditGroupMessageByPageResponseBody setResponseBody(GetOutsideAuditGroupMessageByPageResponseBodyResponseBody responseBody) {
this.responseBody = responseBody;
return this;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBody getResponseBody() {
return this.responseBody;
}
public static class GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender extends TeaModel {
/**
* example:
* user1234
*/
@NameInMap("id")
public String id;
/**
* example:
* userId
*/
@NameInMap("idType")
public String idType;
/**
* example:
* user
*/
@NameInMap("type")
public String type;
public static GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender build(java.util.Map map) throws Exception {
GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender self = new GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender();
return TeaModel.build(map, self);
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList extends TeaModel {
/**
* example:
* { "text": { "content": "这是一段文本" } }
*/
@NameInMap("content")
public String content;
/**
* example:
* text/audio/video
*/
@NameInMap("contentType")
public String contentType;
/**
* example:
* 2022-07-05 15:43:03
*/
@NameInMap("createAt")
public String createAt;
/**
* example:
* cid123456
*/
@NameInMap("openConversationId")
public String openConversationId;
@NameInMap("sender")
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender sender;
public static GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList build(java.util.Map map) throws Exception {
GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList self = new GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList();
return TeaModel.build(map, self);
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList setContentType(String contentType) {
this.contentType = contentType;
return this;
}
public String getContentType() {
return this.contentType;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList setCreateAt(String createAt) {
this.createAt = createAt;
return this;
}
public String getCreateAt() {
return this.createAt;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageList setSender(GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender sender) {
this.sender = sender;
return this;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBodyMessageListSender getSender() {
return this.sender;
}
}
public static class GetOutsideAuditGroupMessageByPageResponseBodyResponseBody extends TeaModel {
@NameInMap("messageList")
public java.util.List messageList;
/**
* example:
* 1680493837428
*/
@NameInMap("nextToken")
public String nextToken;
public static GetOutsideAuditGroupMessageByPageResponseBodyResponseBody build(java.util.Map map) throws Exception {
GetOutsideAuditGroupMessageByPageResponseBodyResponseBody self = new GetOutsideAuditGroupMessageByPageResponseBodyResponseBody();
return TeaModel.build(map, self);
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBody setMessageList(java.util.List messageList) {
this.messageList = messageList;
return this;
}
public java.util.List getMessageList() {
return this.messageList;
}
public GetOutsideAuditGroupMessageByPageResponseBodyResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy