package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val get : ?base_url:string -> ?etag:string -> ?std_params:GapiService.StandardParameters.t -> appId:string -> GapiConversation.Session.t -> GapiDriveV2Model.App.t * GapiConversation.Session.t

Gets a specific app.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").

  • parameter etag

    Optional ETag.

  • parameter std_params

    Optional standard parameters.

  • parameter appId

    The ID of the app.

val list : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?appFilterExtensions:string -> ?appFilterMimeTypes:string -> ?languageCode:string -> GapiConversation.Session.t -> GapiDriveV2Model.AppList.t * GapiConversation.Session.t

Lists a user's installed apps.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").

  • parameter std_params

    Optional standard parameters.

  • parameter appFilterExtensions

    A comma-separated list of file extensions for open with filtering. All apps within the given app query scope which can open any of the given file extensions will be included in the response. If appFilterMimeTypes are provided as well, the result is a union of the two resulting app lists.

  • parameter appFilterMimeTypes

    A comma-separated list of MIME types for open with filtering. All apps within the given app query scope which can open any of the given MIME types will be included in the response. If appFilterExtensions are provided as well, the result is a union of the two resulting app lists.

  • parameter languageCode

    A language or locale code, as defined by BCP 47, with some extensions from Unicode's LDML format (http://www.unicode.org/reports/tr35/).