Struct gapi_grpc::google::ads::googleads::v4::resources::UserList [−][src]
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.
pub fn size_range_for_search(&self) -> UserListSizeRange
[src]
Returns the enum value of size_range_for_search
, or the default if the field is set to an invalid enum value.
pub fn set_size_range_for_search(&mut self, value: UserListSizeRange)
[src]
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]
fn encode_raw<B>(&self, buf: &mut B) where
B: BufMut,
[src]
B: BufMut,
fn merge_field<B>(
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
[src]
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
fn encoded_len(&self) -> usize
[src]
fn clear(&mut self)
[src]
pub fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
[src]
B: BufMut,
pub fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
[src]
B: BufMut,
pub fn decode<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf,
[src]
Self: Default,
B: Buf,
pub fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf,
[src]
Self: Default,
B: Buf,
pub fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
[src]
B: Buf,
pub fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
[src]
B: Buf,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
pub fn into_request(self) -> Request<T>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,