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/GapiDriveV2Model/App/index.html

Module GapiDriveV2Model.AppSource

Sourcemodule Icons : sig ... end
Sourcetype t = {
  1. authorized : bool;
    (*

    Whether the app is authorized to access data on the user's Drive.

    *)
  2. createInFolderTemplate : string;
    (*

    The template url to create a new file with this app in a given folder. The template will contain {folderId} to be replaced by the folder to create the new file in.

    *)
  3. createUrl : string;
    (*

    The url to create a new file with this app.

    *)
  4. hasDriveWideScope : bool;
    (*

    Whether the app has drive-wide scope. An app with drive-wide scope can access all files in the user's drive.

    *)
  5. icons : Icons.t list;
    (*

    The various icons for the app.

    *)
  6. id : string;
    (*

    The ID of the app.

    *)
  7. installed : bool;
    (*

    Whether the app is installed.

    *)
  8. kind : string;
    (*

    This is always drive#app.

    *)
  9. longDescription : string;
    (*

    A long description of the app.

    *)
  10. name : string;
    (*

    The name of the app.

    *)
  11. objectType : string;
    (*

    The type of object this app creates (e.g. Chart). If empty, the app name should be used instead.

    *)
  12. openUrlTemplate : string;
    (*

    The template url for opening files with this app. The template will contain {ids} and/or {exportIds} to be replaced by the actual file ids. See Open Files for the full documentation.

    *)
  13. primaryFileExtensions : string list;
    (*

    The list of primary file extensions.

    *)
  14. primaryMimeTypes : string list;
    (*

    The list of primary mime types.

    *)
  15. productId : string;
    (*

    The ID of the product listing for this app.

    *)
  16. productUrl : string;
    (*

    A link to the product listing for this app.

    *)
  17. secondaryFileExtensions : string list;
    (*

    The list of secondary file extensions.

    *)
  18. secondaryMimeTypes : string list;
    (*

    The list of secondary mime types.

    *)
  19. shortDescription : string;
    (*

    A short description of the app.

    *)
  20. supportsCreate : bool;
    (*

    Whether this app supports creating new objects.

    *)
  21. supportsImport : bool;
    (*

    Whether this app supports importing Google Docs.

    *)
  22. supportsMultiOpen : bool;
    (*

    Whether this app supports opening more than one file.

    *)
  23. supportsOfflineCreate : bool;
    (*

    Whether this app supports creating new files when offline.

    *)
  24. useByDefault : bool;
    (*

    Whether the app is selected as the default handler for the types it supports.

    *)
}
Sourceval authorized : (t, bool) GapiLens.t
Sourceval createInFolderTemplate : (t, string) GapiLens.t
Sourceval createUrl : (t, string) GapiLens.t
Sourceval hasDriveWideScope : (t, bool) GapiLens.t
Sourceval icons : (t, Icons.t list) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval installed : (t, bool) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval longDescription : (t, string) GapiLens.t
Sourceval name : (t, string) GapiLens.t
Sourceval objectType : (t, string) GapiLens.t
Sourceval openUrlTemplate : (t, string) GapiLens.t
Sourceval primaryFileExtensions : (t, string list) GapiLens.t
Sourceval primaryMimeTypes : (t, string list) GapiLens.t
Sourceval productId : (t, string) GapiLens.t
Sourceval productUrl : (t, string) GapiLens.t
Sourceval secondaryFileExtensions : (t, string list) GapiLens.t
Sourceval secondaryMimeTypes : (t, string list) GapiLens.t
Sourceval shortDescription : (t, string) GapiLens.t
Sourceval supportsCreate : (t, bool) GapiLens.t
Sourceval supportsImport : (t, bool) GapiLens.t
Sourceval supportsMultiOpen : (t, bool) GapiLens.t
Sourceval supportsOfflineCreate : (t, bool) GapiLens.t
Sourceval useByDefault : (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