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

com.aliyun.dingtalkdoc_1_0.models.GetAllSheetsResponseBody 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.dingtalkdoc_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 {
        /**
         * example:
         * 

sheet_id

*/ @NameInMap("id") public String id; /** * example: *

sheet_name

*/ @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy