package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. items : Url.t list;
    (*

    A list of URL resources.

    *)
  2. 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.

    *)
  3. kind : string;
    (*

    The fixed string "urlshortener#urlHistory".

    *)
  4. nextPageToken : string;
    (*

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

    *)
  5. totalItems : int;
    (*

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

    *)
}
val items : (t, 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