package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiSheetsV4Model.TableSource

Sourcetype t = {
  1. tableId : string;
    (*

    The id of the table.

    *)
  2. name : string;
    (*

    The table name. This is unique to all tables in the same spreadsheet.

    *)
  3. range : GridRange.t;
    (*

    The table range.

    *)
  4. rowsProperties : TableRowsProperties.t;
    (*

    The table rows properties.

    *)
  5. columnProperties : TableColumnProperties.t list;
    (*

    The table column properties.

    *)
}
Sourceval tableId : (t, string) GapiLens.t
Sourceval name : (t, string) GapiLens.t
Sourceval rowsProperties : (t, TableRowsProperties.t) GapiLens.t
Sourceval columnProperties : (t, TableColumnProperties.t list) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t