Struct google_tagmanager2::UserPermission[][src]

pub struct UserPermission {
    pub container_access: Option<Vec<ContainerAccess>>,
    pub path: Option<String>,
    pub account_access: Option<AccountAccess>,
    pub email_address: Option<String>,
    pub account_id: Option<String>,
}

Represents a user's permissions to an account and its container.

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

GTM Container access permissions.

GTM UserPermission's API relative path.

GTM Account access permissions.

User's email address.

The Account ID uniquely identifies the GTM Account.

Trait Implementations

impl Default for UserPermission
[src]

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

impl Clone for UserPermission
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UserPermission
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UserPermission
[src]

impl ResponseResult for UserPermission
[src]

Auto Trait Implementations