package gapi-ocaml

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

Module GapiSheetsV4Model.UpdateConditionalFormatRuleRequestSource

Sourcetype t = {
  1. rule : ConditionalFormatRule.t;
    (*

    The rule that should replace the rule at the given index.

    *)
  2. newIndex : int;
    (*

    The zero-based new index the rule should end up at.

    *)
  3. index : int;
    (*

    The zero-based index of the rule that should be replaced or moved.

    *)
  4. sheetId : int;
    (*

    The sheet of the rule to move. Required if new_index is set, unused otherwise.

    *)
}
Sourceval newIndex : (t, int) GapiLens.t
Sourceval index : (t, int) GapiLens.t
Sourceval sheetId : (t, int) 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