module AnalyticsSnapshot:sig..end
type t = {
|
browsers : |
(* |
Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.
| *) |
|
countries : |
(* |
Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.
| *) |
|
longUrlClicks : |
(* |
Number of clicks on all goo.gl short URLs pointing to this long URL.
| *) |
|
platforms : |
(* |
Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.
| *) |
|
referrers : |
(* |
Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.
| *) |
|
shortUrlClicks : |
(* |
Number of clicks on this short URL.
| *) |
val browsers : (t,
GapiUrlshortenerV1Model.StringCount.t list)
GapiLens.t
val countries : (t,
GapiUrlshortenerV1Model.StringCount.t list)
GapiLens.t
val longUrlClicks : (t, int64) GapiLens.t
val platforms : (t,
GapiUrlshortenerV1Model.StringCount.t list)
GapiLens.t
val referrers : (t,
GapiUrlshortenerV1Model.StringCount.t list)
GapiLens.t
val shortUrlClicks : (t, int64) 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