com.aliyun.dingtalkimpaas_1_0.models.QueryBatchSendResultResponseBody 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 QueryBatchSendResultResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("results")
public java.util.List results;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("status")
public Integer status;
public static QueryBatchSendResultResponseBody build(java.util.Map map) throws Exception {
QueryBatchSendResultResponseBody self = new QueryBatchSendResultResponseBody();
return TeaModel.build(map, self);
}
public QueryBatchSendResultResponseBody setResults(java.util.List results) {
this.results = results;
return this;
}
public java.util.List getResults() {
return this.results;
}
public QueryBatchSendResultResponseBody setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public static class QueryBatchSendResultResponseBodyResults extends TeaModel {
/**
* example:
* 123@channel
*/
@NameInMap("appUid")
public String appUid;
/**
* example:
* cid1234567890==
*/
@NameInMap("conversationId")
public String conversationId;
/**
* example:
* 0
*/
@NameInMap("errorCode")
public String errorCode;
/**
* example:
* success
*/
@NameInMap("errorMessage")
public String errorMessage;
/**
* example:
* msg1234567890==
*/
@NameInMap("msgId")
public String msgId;
public static QueryBatchSendResultResponseBodyResults build(java.util.Map map) throws Exception {
QueryBatchSendResultResponseBodyResults self = new QueryBatchSendResultResponseBodyResults();
return TeaModel.build(map, self);
}
public QueryBatchSendResultResponseBodyResults setAppUid(String appUid) {
this.appUid = appUid;
return this;
}
public String getAppUid() {
return this.appUid;
}
public QueryBatchSendResultResponseBodyResults setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public QueryBatchSendResultResponseBodyResults setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public QueryBatchSendResultResponseBodyResults setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public QueryBatchSendResultResponseBodyResults setMsgId(String msgId) {
this.msgId = msgId;
return this;
}
public String getMsgId() {
return this.msgId;
}
}
}