com.microsoft.graph.models.WorkbookTable Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.WorkbookTableSort;
import com.microsoft.graph.models.WorkbookWorksheet;
import com.microsoft.graph.models.Entity;
import com.microsoft.graph.requests.WorkbookTableColumnCollectionPage;
import com.microsoft.graph.requests.WorkbookTableRowCollectionPage;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Workbook Table.
*/
public class WorkbookTable extends Entity implements IJsonBackedObject {
/**
* The Highlight First Column.
* Indicates whether the first column contains special formatting.
*/
@SerializedName(value = "highlightFirstColumn", alternate = {"HighlightFirstColumn"})
@Expose
@Nullable
public Boolean highlightFirstColumn;
/**
* The Highlight Last Column.
* Indicates whether the last column contains special formatting.
*/
@SerializedName(value = "highlightLastColumn", alternate = {"HighlightLastColumn"})
@Expose
@Nullable
public Boolean highlightLastColumn;
/**
* The Legacy Id.
* Legacy ID used in older Excel clients. The value of the identifier remains the same even when the table is renamed. This property should be interpreted as an opaque string value and shouldn't be parsed to any other type. Read-only.
*/
@SerializedName(value = "legacyId", alternate = {"LegacyId"})
@Expose
@Nullable
public String legacyId;
/**
* The Name.
* Name of the table.
*/
@SerializedName(value = "name", alternate = {"Name"})
@Expose
@Nullable
public String name;
/**
* The Show Banded Columns.
* Indicates whether the columns show banded formatting in which odd columns are highlighted differently from even ones to make reading the table easier.
*/
@SerializedName(value = "showBandedColumns", alternate = {"ShowBandedColumns"})
@Expose
@Nullable
public Boolean showBandedColumns;
/**
* The Show Banded Rows.
* Indicates whether the rows show banded formatting in which odd rows are highlighted differently from even ones to make reading the table easier.
*/
@SerializedName(value = "showBandedRows", alternate = {"ShowBandedRows"})
@Expose
@Nullable
public Boolean showBandedRows;
/**
* The Show Filter Button.
* Indicates whether the filter buttons are visible at the top of each column header. Setting this is only allowed if the table contains a header row.
*/
@SerializedName(value = "showFilterButton", alternate = {"ShowFilterButton"})
@Expose
@Nullable
public Boolean showFilterButton;
/**
* The Show Headers.
* Indicates whether the header row is visible or not. This value can be set to show or remove the header row.
*/
@SerializedName(value = "showHeaders", alternate = {"ShowHeaders"})
@Expose
@Nullable
public Boolean showHeaders;
/**
* The Show Totals.
* Indicates whether the total row is visible or not. This value can be set to show or remove the total row.
*/
@SerializedName(value = "showTotals", alternate = {"ShowTotals"})
@Expose
@Nullable
public Boolean showTotals;
/**
* The Style.
* Constant value that represents the Table style. The possible values are: TableStyleLight1 through TableStyleLight21, TableStyleMedium1 through TableStyleMedium28, TableStyleStyleDark1 through TableStyleStyleDark11. A custom user-defined style present in the workbook can also be specified.
*/
@SerializedName(value = "style", alternate = {"Style"})
@Expose
@Nullable
public String style;
/**
* The Columns.
* Represents a collection of all the columns in the table. Read-only.
*/
@SerializedName(value = "columns", alternate = {"Columns"})
@Expose
@Nullable
public com.microsoft.graph.requests.WorkbookTableColumnCollectionPage columns;
/**
* The Rows.
* Represents a collection of all the rows in the table. Read-only.
*/
@SerializedName(value = "rows", alternate = {"Rows"})
@Expose
@Nullable
public com.microsoft.graph.requests.WorkbookTableRowCollectionPage rows;
/**
* The Sort.
* Represents the sorting for the table. Read-only.
*/
@SerializedName(value = "sort", alternate = {"Sort"})
@Expose
@Nullable
public WorkbookTableSort sort;
/**
* The Worksheet.
* The worksheet containing the current table. Read-only.
*/
@SerializedName(value = "worksheet", alternate = {"Worksheet"})
@Expose
@Nullable
public WorkbookWorksheet worksheet;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
if (json.has("columns")) {
columns = serializer.deserializeObject(json.get("columns"), com.microsoft.graph.requests.WorkbookTableColumnCollectionPage.class);
}
if (json.has("rows")) {
rows = serializer.deserializeObject(json.get("rows"), com.microsoft.graph.requests.WorkbookTableRowCollectionPage.class);
}
}
}