com.aliyun.dingtalkrobot_1_0.models.BatchRecallGroupResponseBody 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class BatchRecallGroupResponseBody extends TeaModel {
// 撤回失败的消息id及原因
@NameInMap("failedResult")
public java.util.Map failedResult;
// 撤回成功的消息id
@NameInMap("successResult")
public java.util.List successResult;
public static BatchRecallGroupResponseBody build(java.util.Map map) throws Exception {
BatchRecallGroupResponseBody self = new BatchRecallGroupResponseBody();
return TeaModel.build(map, self);
}
public BatchRecallGroupResponseBody setFailedResult(java.util.Map failedResult) {
this.failedResult = failedResult;
return this;
}
public java.util.Map getFailedResult() {
return this.failedResult;
}
public BatchRecallGroupResponseBody setSuccessResult(java.util.List successResult) {
this.successResult = successResult;
return this;
}
public java.util.List getSuccessResult() {
return this.successResult;
}
}