package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiUrlshortenerV1Model.UrlHistorySource

Sourcetype 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).

    *)
}
Sourceval items : (t, Url.t list) GapiLens.t
Sourceval itemsPerPage : (t, int) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval nextPageToken : (t, string) GapiLens.t
Sourceval totalItems : (t, int) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t