All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkrobot_1_0.models.BatchRecallOTOResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy