GapiPlusV1Model.PeopleFeed
type t = {
etag : string; | (* ETag of this response for caching purposes. *) |
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. *) |
kind : string; | (* Identifies this resource as a collection of people. Value: "plus#peopleFeed". *) |
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. *) |
selfLink : string; | (* Link to this resource. *) |
title : string; | (* The title of this collection of people. *) |
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 selfLink : ( 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