com.aliyun.dingtalkdoc_1_0.models.SheetFindAllResponseBody 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 SheetFindAllResponseBody extends TeaModel {
@NameInMap("value")
public java.util.List value;
public static SheetFindAllResponseBody build(java.util.Map map) throws Exception {
SheetFindAllResponseBody self = new SheetFindAllResponseBody();
return TeaModel.build(map, self);
}
public SheetFindAllResponseBody setValue(java.util.List value) {
this.value = value;
return this;
}
public java.util.List getValue() {
return this.value;
}
public static class SheetFindAllResponseBodyValue extends TeaModel {
@NameInMap("a1Notation")
public String a1Notation;
@NameInMap("values")
public java.util.List> values;
public static SheetFindAllResponseBodyValue build(java.util.Map map) throws Exception {
SheetFindAllResponseBodyValue self = new SheetFindAllResponseBodyValue();
return TeaModel.build(map, self);
}
public SheetFindAllResponseBodyValue setA1Notation(String a1Notation) {
this.a1Notation = a1Notation;
return this;
}
public String getA1Notation() {
return this.a1Notation;
}
public SheetFindAllResponseBodyValue setValues(java.util.List> values) {
this.values = values;
return this;
}
public java.util.List> getValues() {
return this.values;
}
}
}