Module GapiUrlshortenerV1Model.AnalyticsSnapshot

module AnalyticsSnapshot: sig .. end

type t = {
   browsers : GapiUrlshortenerV1Model.StringCount.t list; (*
Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.
*)
   countries : GapiUrlshortenerV1Model.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 : GapiUrlshortenerV1Model.StringCount.t list; (*
Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.
*)
   referrers : GapiUrlshortenerV1Model.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 : (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