Module GapiAnalyticsV3Model.AccountTicket

module AccountTicket: sig .. end

type t = {
   account : GapiAnalyticsV3Model.Account.t; (*
Account for this ticket.
*)
   id : string; (*
Account ticket ID used to access the account ticket.
*)
   kind : string; (*
Resource type for account ticket.
*)
   profile : GapiAnalyticsV3Model.Profile.t; (*
View (Profile) for the account.
*)
   redirectUri : string; (*
Redirect URI where the user will be sent after accepting Terms of Service. Must be configured in APIs console as a callback URL.
*)
   webproperty : GapiAnalyticsV3Model.Webproperty.t; (*
Web property for the account.
*)
}
val account : (t, GapiAnalyticsV3Model.Account.t)
GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val profile : (t, GapiAnalyticsV3Model.Profile.t)
GapiLens.t
val redirectUri : (t, string) GapiLens.t
val webproperty : (t, GapiAnalyticsV3Model.Webproperty.t)
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