package gapi-ocaml

  1. Overview
  2. Docs
A simple OCaml client for Google Services

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.4.8.tar.gz
sha256=5cc769af46198deb88707ccb50398088316e60f51db8c36389e6a2aae4c2ad30
md5=d918a22fde1b1d49a9783fb2f932d059

doc/gapi-ocaml/GapiSheetsV4Model/Spreadsheet/index.html

Module GapiSheetsV4Model.SpreadsheetSource

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

    The ID of the spreadsheet. This field is read-only.

    *)
  2. properties : SpreadsheetProperties.t;
    (*

    Overall properties of a spreadsheet.

    *)
  3. sheets : Sheet.t list;
    (*

    The sheets that are part of a spreadsheet.

    *)
  4. namedRanges : NamedRange.t list;
    (*

    The named ranges defined in a spreadsheet.

    *)
  5. spreadsheetUrl : string;
    (*

    The url of the spreadsheet. This field is read-only.

    *)
  6. developerMetadata : DeveloperMetadata.t list;
    (*

    The developer metadata associated with a spreadsheet.

    *)
  7. dataSources : DataSource.t list;
    (*

    A list of external data sources connected with the spreadsheet.

    *)
  8. dataSourceSchedules : DataSourceRefreshSchedule.t list;
    (*

    Output only. A list of data source refresh schedules.

    *)
}
Sourceval spreadsheetId : (t, string) GapiLens.t
Sourceval sheets : (t, Sheet.t list) GapiLens.t
Sourceval namedRanges : (t, NamedRange.t list) GapiLens.t
Sourceval spreadsheetUrl : (t, string) GapiLens.t
Sourceval developerMetadata : (t, DeveloperMetadata.t list) GapiLens.t
Sourceval dataSources : (t, DataSource.t list) GapiLens.t
Sourceval dataSourceSchedules : (t, DataSourceRefreshSchedule.t list) 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