package gapi-ocaml

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

Module GapiSheetsV4Model.BatchUpdateSpreadsheetRequestSource

Sourcetype t = {
  1. requests : Request.t list;
    (*

    A list of updates to apply to the spreadsheet. Requests will be applied in the order they are specified. If any request is not valid, no requests will be applied.

    *)
  2. includeSpreadsheetInResponse : bool;
    (*

    Determines if the update response should include the spreadsheet resource.

    *)
  3. responseRanges : string list;
    (*

    Limits the ranges included in the response spreadsheet. Meaningful only if include_spreadsheet_in_response is 'true'.

    *)
  4. responseIncludeGridData : bool;
    (*

    True if grid data should be returned. Meaningful only if include_spreadsheet_in_response is 'true'. This parameter is ignored if a field mask was set in the request.

    *)
}
Sourceval requests : (t, Request.t list) GapiLens.t
Sourceval includeSpreadsheetInResponse : (t, bool) GapiLens.t
Sourceval responseRanges : (t, string list) GapiLens.t
Sourceval responseIncludeGridData : (t, bool) 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