com.aliyun.dingtalkdoc_1_0.models.BatchResponseBody 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.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class BatchResponseBody extends TeaModel {
@NameInMap("responses")
public java.util.List> responses;
public static BatchResponseBody build(java.util.Map map) throws Exception {
BatchResponseBody self = new BatchResponseBody();
return TeaModel.build(map, self);
}
public BatchResponseBody setResponses(java.util.List> responses) {
this.responses = responses;
return this;
}
public java.util.List> getResponses() {
return this.responses;
}
}