Module GapiUrlshortenerV1Model.UrlHistory

type t = {
items : Url.t list;

A list of URL resources.

itemsPerPage : int;

Number of items returned with each full "page" of results. Note that the last page could have fewer items than the "itemsPerPage" value.

kind : string;

The fixed string "urlshortener#urlHistory".

nextPageToken : string;

A token to provide to get the next page of results.

totalItems : int;

Total number of short URLs associated with this user (may be approximate).

}
val items : (tUrl.t list) GapiLens.t
val itemsPerPage : (t, int) GapiLens.t
val kind : (t, string) GapiLens.t
val nextPageToken : (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