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

pub struct UserList {
    pub resource_name: String,
    pub id: Option<i64>,
    pub read_only: Option<bool>,
    pub name: Option<String>,
    pub description: Option<String>,
    pub membership_status: i32,
    pub integration_code: Option<String>,
    pub membership_life_span: Option<i64>,
    pub size_for_display: Option<i64>,
    pub size_range_for_display: i32,
    pub size_for_search: Option<i64>,
    pub size_range_for_search: i32,
    pub type: i32,
    pub closing_reason: i32,
    pub access_reason: i32,
    pub account_user_list_status: i32,
    pub eligible_for_search: Option<bool>,
    pub eligible_for_display: Option<bool>,
    pub user_list: Option<UserList>,
}

A user list. This is a list of users a customer may target.

Fields

resource_name: String

Immutable. The resource name of the user list. User list resource names have the form:

customers/{customer_id}/userLists/{user_list_id}

id: Option<i64>

Output only. Id of the user list.

read_only: Option<bool>

Output only. A flag that indicates if a user may edit a list. Depends on the list ownership and list type. For example, external remarketing user lists are not editable.

This field is read-only.

name: Option<String>

Name of this user list. Depending on its access_reason, the user list name may not be unique (e.g. if access_reason=SHARED)

description: Option<String>

Description of this user list.

membership_status: i32

Membership status of this user list. Indicates whether a user list is open or active. Only open user lists can accumulate more users and can be targeted to.

integration_code: Option<String>

An ID from external system. It is used by user list sellers to correlate IDs on their systems.

membership_life_span: Option<i64>

Number of days a user’s cookie stays on your list since its most recent addition to the list. This field must be between 0 and 540 inclusive. However, for CRM based userlists, this field can be set to 10000 which means no expiration.

It’ll be ignored for logical_user_list.

size_for_display: Option<i64>

Output only. Estimated number of users in this user list, on the Google Display Network. This value is null if the number of users has not yet been determined.

This field is read-only.

size_range_for_display: i32

Output only. Size range in terms of number of users of the UserList, on the Google Display Network.

This field is read-only.

size_for_search: Option<i64>

Output only. Estimated number of users in this user list in the google.com domain. These are the users available for targeting in Search campaigns. This value is null if the number of users has not yet been determined.

This field is read-only.

size_range_for_search: i32

Output only. Size range in terms of number of users of the UserList, for Search ads.

This field is read-only.

type: i32

Output only. Type of this list.

This field is read-only.

closing_reason: i32

Indicating the reason why this user list membership status is closed. It is only populated on lists that were automatically closed due to inactivity, and will be cleared once the list membership status becomes open.

access_reason: i32

Output only. Indicates the reason this account has been granted access to the list. The reason can be SHARED, OWNED, LICENSED or SUBSCRIBED.

This field is read-only.

account_user_list_status: i32

Indicates if this share is still enabled. When a UserList is shared with the user this field is set to ENABLED. Later the userList owner can decide to revoke the share and make it DISABLED. The default value of this field is set to ENABLED.

eligible_for_search: Option<bool>

Indicates if this user list is eligible for Google Search Network.

eligible_for_display: Option<bool>

Output only. Indicates this user list is eligible for Google Display Network.

This field is read-only.

user_list: Option<UserList>

The user list.

Exactly one must be set.

Implementations

impl UserList[src]

pub fn membership_status(&self) -> UserListMembershipStatus[src]

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

pub fn set_membership_status(&mut self, value: UserListMembershipStatus)[src]

Sets membership_status to the provided enum value.

pub fn size_range_for_display(&self) -> UserListSizeRange[src]

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

pub fn set_size_range_for_display(&mut self, value: UserListSizeRange)[src]

Sets size_range_for_display to the provided enum value.

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

Sets size_range_for_search to the provided enum value.

pub fn type(&self) -> UserListType[src]

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

pub fn set_type(&mut self, value: UserListType)[src]

Sets type to the provided enum value.

pub fn closing_reason(&self) -> UserListClosingReason[src]

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

pub fn set_closing_reason(&mut self, value: UserListClosingReason)[src]

Sets closing_reason to the provided enum value.

pub fn access_reason(&self) -> AccessReason[src]

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

pub fn set_access_reason(&mut self, value: AccessReason)[src]

Sets access_reason to the provided enum value.

pub fn account_user_list_status(&self) -> UserListAccessStatus[src]

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

pub fn set_account_user_list_status(&mut self, value: UserListAccessStatus)[src]

Sets account_user_list_status to the provided enum value.

Trait Implementations

impl Clone for UserList[src]

impl Debug for UserList[src]

impl Default for UserList[src]

impl Message for UserList[src]

impl PartialEq<UserList> for UserList[src]

impl StructuralPartialEq for UserList[src]

Auto Trait Implementations

impl RefUnwindSafe for UserList

impl Send for UserList

impl Sync for UserList

impl Unpin for UserList

impl UnwindSafe for UserList

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]