GapiAnalyticsV3Model.EntityUserLink
module Permissions : sig ... end
module Entity : sig ... end
type t = {
entity : Entity.t; | (* Entity for this link. It can be an account, a web property, or a view (profile). *) |
id : string; | (* Entity user link ID *) |
kind : string; | (* Resource type for entity user link. *) |
permissions : Permissions.t; | (* Permissions the user has for this entity. *) |
selfLink : string; | (* Self link for this resource. *) |
userRef : UserRef.t; | (* User reference. *) |
}
val entity : ( t, Entity.t ) GapiLens.t
val id : ( t, string ) GapiLens.t
val kind : ( t, string ) GapiLens.t
val permissions : ( t, Permissions.t ) GapiLens.t
val selfLink : ( t, string ) GapiLens.t
val userRef : ( t, UserRef.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