package gapi-ocaml

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

Module GapiSheetsV4Model.FindReplaceResponseSource

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

    The number of non-formula cells changed.

    *)
  2. formulasChanged : int;
    (*

    The number of formula cells changed.

    *)
  3. rowsChanged : int;
    (*

    The number of rows changed.

    *)
  4. sheetsChanged : int;
    (*

    The number of sheets changed.

    *)
  5. occurrencesChanged : int;
    (*

    The number of occurrences (possibly multiple within a cell) changed. For example, if replacing `"e"` with `"o"` in `"Google Sheets"`, this would be `"3"` because `"Google Sheets"` -> `"Googlo Shoots"`.

    *)
}
Sourceval valuesChanged : (t, int) GapiLens.t
Sourceval formulasChanged : (t, int) GapiLens.t
Sourceval rowsChanged : (t, int) GapiLens.t
Sourceval sheetsChanged : (t, int) GapiLens.t
Sourceval occurrencesChanged : (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