com.aliyun.dingtalknotable_1_0.models.GetAllSheetsResponseBody 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.dingtalknotable_1_0.models;
import com.aliyun.tea.*;
public class GetAllSheetsResponseBody extends TeaModel {
@NameInMap("value")
public java.util.List value;
public static GetAllSheetsResponseBody build(java.util.Map map) throws Exception {
GetAllSheetsResponseBody self = new GetAllSheetsResponseBody();
return TeaModel.build(map, self);
}
public GetAllSheetsResponseBody setValue(java.util.List value) {
this.value = value;
return this;
}
public java.util.List getValue() {
return this.value;
}
public static class GetAllSheetsResponseBodyValue extends TeaModel {
@NameInMap("id")
public String id;
@NameInMap("name")
public String name;
public static GetAllSheetsResponseBodyValue build(java.util.Map map) throws Exception {
GetAllSheetsResponseBodyValue self = new GetAllSheetsResponseBodyValue();
return TeaModel.build(map, self);
}
public GetAllSheetsResponseBodyValue setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetAllSheetsResponseBodyValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}