package gapi-ocaml

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

Module GapiSheetsV4Model.BatchUpdateSpreadsheetResponseSource

Sourcetype t = {
  1. spreadsheetId : string;
    (*

    The spreadsheet the updates were applied to.

    *)
  2. replies : Response.t list;
    (*

    The reply of the updates. This maps 1:1 with the updates, although replies to some requests may be empty.

    *)
  3. updatedSpreadsheet : Spreadsheet.t;
    (*

    The spreadsheet after updates were applied. This is only set if BatchUpdateSpreadsheetRequest.include_spreadsheet_in_response is `true`.

    *)
}
Sourceval spreadsheetId : (t, string) GapiLens.t
Sourceval replies : (t, Response.t list) GapiLens.t
Sourceval updatedSpreadsheet : (t, Spreadsheet.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