Module GapiPlusV1Service.ActivitiesResource

module ActivitiesResource: sig .. end

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.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
etag : Optional ETag.
std_params : Optional standard parameters.
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.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
std_params : Optional standard parameters.
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.
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.
userId : The ID of the user to get activities for. The special value "me" can be used to indicate the authenticated user.
collection : The collection of activities to list.
val search : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?language:string ->
?maxResults:int ->
?orderBy:OrderBy.t ->
?pageToken:string ->
query:string ->
GapiConversation.Session.t ->
GapiPlusV1Model.ActivityFeed.t * GapiConversation.Session.t
Search public activities.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
std_params : Optional standard parameters.
language : Specify the preferred language to search with. See search language codes for available values.
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.
orderBy : Specifies how to order search results.
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.
query : Full-text search query string.