Skip to content

Commit

Permalink
Remove PlusParameters from service interface
Browse files Browse the repository at this point in the history
  • Loading branch information
astrada committed Dec 18, 2011
1 parent 6c2d61f commit 3cefd50
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions src/gapi/gapiPlusService.mli
Expand Up @@ -9,40 +9,6 @@
(** OAuth 2.0 scope that allows you to identify who the authenticated user is. *)
val scope : string

(** The query parameters you can use with the Google+ API. *)
module PlusParameters :
sig
type t = {
fields : string;
(** Selector specifying which fields to include in a partial response. *)
prettyPrint : bool;
(** Returns response with indentations and line breaks. *)
quotaUser : string;
(** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides [userIp] if both are provided. *)
userIp : string;
(** IP address of the end user for whom the API call is being made. *)
query : string;
(** Full-text search query string. *)
language : string;
(** Specify the preferred language to search with. See search language codes for available values. *)
maxResults : int;
(** The maximum number of activities to include in the response, used for paging. For any response, the actual number returned may be less than the specified maxResults. *)
orderBy : string;
(** Specifies how to order search results.
Acceptable values are:
- ["best"] - Sort activities by relevance to the user, most relevant first.
- ["recent"] - Sort activities by published date, most recent first. (default) *)
pageToken : string
(** The continuation token, 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 may be of any length. *)
}

val default : t

val to_key_value_list : t -> (string * string) list

end

(** The "activities" service. *)
module ActivitiesResource :
sig
Expand Down

0 comments on commit 3cefd50

Please sign in to comment.