package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. etag : string;
    (*

    ETag of this response for caching purposes.

    *)
  2. items : Person.t list;
    (*

    The people in this page of results. Each item includes the id, displayName, image, and url for the person. To retrieve additional profile data, see the people.get method.

    *)
  3. kind : string;
    (*

    Identifies this resource as a collection of people. Value: "plus#peopleFeed".

    *)
  4. nextPageToken : string;
    (*

    The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.

    *)
  5. title : string;
    (*

    The title of this collection of people.

    *)
  6. totalItems : int;
    (*

    The total number of people available in this list. The number of people in a response might be smaller due to paging. This might not be set for all collections.

    *)
}
val etag : (t, string) GapiLens.t
val items : (t, Person.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val nextPageToken : (t, string) GapiLens.t
val title : (t, string) GapiLens.t
val totalItems : (t, int) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t