package gapi-ocaml

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

Module GapiSheetsV4Model.TableColumnPropertiesSource

Sourcetype t = {
  1. columnIndex : int;
    (*

    The 0-based column index. This index is relative to its position in the table and is not necessarily the same as the column index in the sheet.

    *)
  2. columnName : string;
    (*

    The column name.

    *)
  3. columnType : string;
    (*

    The column type.

    *)
  4. dataValidationRule : TableColumnDataValidationRule.t;
    (*

    The column data validation rule. Only set for dropdown column type.

    *)
}
Sourceval columnIndex : (t, int) GapiLens.t
Sourceval columnName : (t, string) GapiLens.t
Sourceval columnType : (t, string) 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