package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module OrderBy : sig ... end
module Collection : sig ... end
val get : ?base_url:string -> ?etag:string -> ?std_params:GapiService.StandardParameters.t -> activityId:string -> GapiConversation.Session.t -> GapiPlusV1Model.Activity.t * GapiConversation.Session.t

Get an activity.

  • parameter base_url

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

  • parameter etag

    Optional ETag.

  • parameter std_params

    Optional standard parameters.

  • parameter activityId

    The ID of the activity to get.

val list : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?maxResults:int -> ?pageToken:string -> userId:string -> collection:Collection.t -> GapiConversation.Session.t -> GapiPlusV1Model.ActivityFeed.t * GapiConversation.Session.t

List all of the activities in the specified collection for a particular user.

  • parameter base_url

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

  • parameter std_params

    Optional standard parameters.

  • parameter maxResults

    The maximum number of activities to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.

  • parameter pageToken

    The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.

  • parameter userId

    The ID of the user to get activities for. The special value "me" can be used to indicate the authenticated user.

  • parameter collection

    The collection of activities to list.

Search public activities.

  • parameter base_url

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

  • parameter std_params

    Optional standard parameters.

  • parameter language

    Specify the preferred language to search with. See search language codes for available values.

  • parameter maxResults

    The maximum number of activities to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.

  • parameter orderBy

    Specifies how to order search results.

  • parameter pageToken

    The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response. This token can be of any length.

  • parameter query

    Full-text search query string.