Module GapiUrlshortenerV1Model.AnalyticsSnapshot

type t = {
browsers : StringCount.t list;

Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.

countries : StringCount.t list;

Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.

longUrlClicks : int64;

Number of clicks on all goo.gl short URLs pointing to this long URL.

platforms : StringCount.t list;

Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.

referrers : StringCount.t list;

Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.

shortUrlClicks : int64;

Number of clicks on this short URL.

}
val browsers : (tStringCount.t list) GapiLens.t
val countries : (tStringCount.t list) GapiLens.t
val longUrlClicks : (t, int64) GapiLens.t
val platforms : (tStringCount.t list) GapiLens.t
val referrers : (tStringCount.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