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

com.aliyun.dingtalkdoc_1_0.models.GetSheetResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;

import com.aliyun.tea.*;

public class GetSheetResponseBody extends TeaModel {
    /**
     * example:
     * 

column_count

*/ @NameInMap("columnCount") public Long columnCount; /** * example: *

sheet_id

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

last_non_empty_column

*/ @NameInMap("lastNonEmptyColumn") public Long lastNonEmptyColumn; /** * example: *

last_non_empty_row

*/ @NameInMap("lastNonEmptyRow") public Long lastNonEmptyRow; /** * example: *

sheet_name

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

row_count

*/ @NameInMap("rowCount") public Long rowCount; /** * example: *

visible

*/ @NameInMap("visibility") public String visibility; public static GetSheetResponseBody build(java.util.Map map) throws Exception { GetSheetResponseBody self = new GetSheetResponseBody(); return TeaModel.build(map, self); } public GetSheetResponseBody setColumnCount(Long columnCount) { this.columnCount = columnCount; return this; } public Long getColumnCount() { return this.columnCount; } public GetSheetResponseBody setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public GetSheetResponseBody setLastNonEmptyColumn(Long lastNonEmptyColumn) { this.lastNonEmptyColumn = lastNonEmptyColumn; return this; } public Long getLastNonEmptyColumn() { return this.lastNonEmptyColumn; } public GetSheetResponseBody setLastNonEmptyRow(Long lastNonEmptyRow) { this.lastNonEmptyRow = lastNonEmptyRow; return this; } public Long getLastNonEmptyRow() { return this.lastNonEmptyRow; } public GetSheetResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSheetResponseBody setRowCount(Long rowCount) { this.rowCount = rowCount; return this; } public Long getRowCount() { return this.rowCount; } public GetSheetResponseBody setVisibility(String visibility) { this.visibility = visibility; return this; } public String getVisibility() { return this.visibility; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy