Module GapiPlusV1Service.PeopleResource

module PeopleResource: sig .. end

module OrderBy: sig .. end
module Collection: sig .. end
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
userId:string ->
GapiConversation.Session.t ->
GapiPlusV1Model.Person.t * GapiConversation.Session.t
Get a person's profile. If your app uses scope https://www.googleapis.com/auth/plus.login, this method is guaranteed to return ageRange and language.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
etag : Optional ETag.
std_params : Optional standard parameters.
userId : The ID of the person to get the profile for. The special value "me" can be used to indicate the authenticated user.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?orderBy:OrderBy.t ->
?pageToken:string ->
userId:string ->
collection:Collection.t ->
GapiConversation.Session.t ->
GapiPlusV1Model.PeopleFeed.t * GapiConversation.Session.t
List all of the people in the specified collection.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
std_params : Optional standard parameters.
maxResults : The maximum number of people 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 : The order to return people in.
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 : Get the collection of people for the person identified. Use "me" to indicate the authenticated user.
collection : The collection of people to list.
val listByActivity : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
activityId:string ->
collection:Collection.t ->
GapiConversation.Session.t ->
GapiPlusV1Model.PeopleFeed.t * GapiConversation.Session.t
List all of the people in the specified collection for a particular activity.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/plus/v1/").
std_params : Optional standard parameters.
maxResults : The maximum number of people 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.
activityId : The ID of the activity to get the list of people for.
collection : The collection of people to list.
val search : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?language:string ->
?maxResults:int ->
?pageToken:string ->
query:string ->
GapiConversation.Session.t ->
GapiPlusV1Model.PeopleFeed.t * GapiConversation.Session.t
Search all public profiles.
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 people 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. This token can be of any length.
query : Specify a query string for full text search of public text in all profiles.