package gapi-ocaml

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

Module GapiSheetsV4Model.ExtendedValueSource

Sourcetype t = {
  1. numberValue : float;
    (*

    Represents a double value. Note: Dates, Times and DateTimes are represented as doubles in SERIAL_NUMBER format.

    *)
  2. stringValue : string;
    (*

    Represents a string value. Leading single quotes are not included. For example, if the user typed `'123` into the UI, this would be represented as a `stringValue` of `"123"`.

    *)
  3. boolValue : bool;
    (*

    Represents a boolean value.

    *)
  4. formulaValue : string;
    (*

    Represents a formula.

    *)
  5. errorValue : ErrorValue.t;
    (*

    Represents an error. This field is read-only.

    *)
}
Sourceval numberValue : (t, float) GapiLens.t
Sourceval stringValue : (t, string) GapiLens.t
Sourceval boolValue : (t, bool) GapiLens.t
Sourceval formulaValue : (t, string) GapiLens.t
Sourceval errorValue : (t, ErrorValue.t) 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