Struct gapi_grpc::google::ads::googleads::v5::resources::CustomerLabel[][src]

pub struct CustomerLabel {
    pub resource_name: String,
    pub customer: Option<String>,
    pub label: Option<String>,
}

Represents a relationship between a customer and a label. This customer may not have access to all the labels attached to it. Additional CustomerLabels may be returned by increasing permissions with login-customer-id.

Fields

resource_name: String

Immutable. Name of the resource. Customer label resource names have the form: customers/{customer_id}/customerLabels/{label_id}

customer: Option<String>

Output only. The resource name of the customer to which the label is attached. Read only.

label: Option<String>

Output only. The resource name of the label assigned to the customer.

Note: the Customer ID portion of the label resource name is not validated when creating a new CustomerLabel.

Trait Implementations

impl Clone for CustomerLabel[src]

impl Debug for CustomerLabel[src]

impl Default for CustomerLabel[src]

impl Message for CustomerLabel[src]

impl PartialEq<CustomerLabel> for CustomerLabel[src]

impl StructuralPartialEq for CustomerLabel[src]

Auto Trait Implementations

impl RefUnwindSafe for CustomerLabel

impl Send for CustomerLabel

impl Sync for CustomerLabel

impl Unpin for CustomerLabel

impl UnwindSafe for CustomerLabel

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]