module UrlHistory:sig..end
type t = {
|
items : |
(* |
A list of URL resources.
| *) |
|
itemsPerPage : |
(* |
Number of items returned with each full "page" of results. Note that the last page could have fewer items than the "itemsPerPage" value.
| *) |
|
kind : |
(* |
The fixed string "urlshortener#urlHistory".
| *) |
|
nextPageToken : |
(* |
A token to provide to get the next page of results.
| *) |
|
totalItems : |
(* |
Total number of short URLs associated with this user (may be approximate).
| *) |
val items : (t, GapiUrlshortenerV1Model.Url.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