com.aliyun.dingtalkrobot_1_0.models.BatchRecallOTOResponseBody 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 BatchRecallOTOResponseBody extends TeaModel {
/**
* example:
* b5fe11095f46315d8d30d3f8XXXXXX:system error
*/
@NameInMap("failedResult")
public java.util.Map failedResult;
@NameInMap("successResult")
public java.util.List successResult;
public static BatchRecallOTOResponseBody build(java.util.Map map) throws Exception {
BatchRecallOTOResponseBody self = new BatchRecallOTOResponseBody();
return TeaModel.build(map, self);
}
public BatchRecallOTOResponseBody setFailedResult(java.util.Map failedResult) {
this.failedResult = failedResult;
return this;
}
public java.util.Map getFailedResult() {
return this.failedResult;
}
public BatchRecallOTOResponseBody setSuccessResult(java.util.List successResult) {
this.successResult = successResult;
return this;
}
public java.util.List getSuccessResult() {
return this.successResult;
}
}