Struct google_analytics3::EntityUserLink[][src]

pub struct EntityUserLink {
    pub kind: Option<String>,
    pub user_ref: Option<UserRef>,
    pub permissions: Option<EntityUserLinkPermissions>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub entity: Option<EntityUserLinkEntity>,
}

JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Resource type for entity user link.

User reference.

Permissions the user has for this entity.

Entity user link ID

Self link for this resource.

Entity for this link. It can be an account, a web property, or a view (profile).

Trait Implementations

impl Default for EntityUserLink
[src]

Returns the "default value" for a type. Read more

impl Clone for EntityUserLink
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EntityUserLink
[src]

Formats the value using the given formatter. Read more

impl RequestValue for EntityUserLink
[src]

impl ResponseResult for EntityUserLink
[src]

Auto Trait Implementations