Struct gapi_grpc::google::ads::googleads::v6::resources::CustomerUserAccess[][src]

pub struct CustomerUserAccess {
    pub resource_name: String,
    pub user_id: i64,
    pub email_address: String,
    pub access_role: i32,
    pub access_creation_date_time: String,
    pub inviter_user_email_address: String,
}

Represents the permission of a single user onto a single customer.

Fields

resource_name: String

Immutable. Name of the resource. Resource names have the form: customers/{customer_id}/customerUserAccesses/{user_id}

user_id: i64

Output only. User id of the user with the customer access. Read only field

email_address: String

Output only. Email address of the user. Read only field

access_role: i32

Access role of the user.

access_creation_date_time: String

Output only. The customer user access creation time. Read only field The format is “YYYY-MM-DD HH:MM:SS”. Examples: “2018-03-05 09:15:00” or “2018-02-01 14:34:30”

inviter_user_email_address: String

Output only. The email address of the inviter user. Read only field

Implementations

impl CustomerUserAccess[src]

pub fn access_role(&self) -> AccessRole[src]

Returns the enum value of access_role, or the default if the field is set to an invalid enum value.

pub fn set_access_role(&mut self, value: AccessRole)[src]

Sets access_role to the provided enum value.

Trait Implementations

impl Clone for CustomerUserAccess[src]

impl Debug for CustomerUserAccess[src]

impl Default for CustomerUserAccess[src]

impl Message for CustomerUserAccess[src]

impl PartialEq<CustomerUserAccess> for CustomerUserAccess[src]

impl StructuralPartialEq for CustomerUserAccess[src]

Auto Trait Implementations

impl RefUnwindSafe for CustomerUserAccess

impl Send for CustomerUserAccess

impl Sync for CustomerUserAccess

impl Unpin for CustomerUserAccess

impl UnwindSafe for CustomerUserAccess

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]