Struct google_api_proto::google::ads::googleads::v15::resources::ConversionValueRuleSet
source · pub struct ConversionValueRuleSet {
pub resource_name: String,
pub id: i64,
pub conversion_value_rules: Vec<String>,
pub dimensions: Vec<i32>,
pub owner_customer: String,
pub attachment_type: i32,
pub campaign: String,
pub status: i32,
pub conversion_action_categories: Vec<i32>,
}
Expand description
A conversion value rule set
Fields§
§resource_name: String
Immutable. The resource name of the conversion value rule set. Conversion value rule set resource names have the form:
customers/{customer_id}/conversionValueRuleSets/{conversion_value_rule_set_id}
id: i64
Output only. The ID of the conversion value rule set.
conversion_value_rules: Vec<String>
Resource names of rules within the rule set.
dimensions: Vec<i32>
Defines dimensions for Value Rule conditions. The condition types of value rules within this value rule set must be of these dimensions. The first entry in this list is the primary dimension of the included value rules. When using value rule primary dimension segmentation, conversion values will be segmented into the values adjusted by value rules and the original values, if some value rules apply.
owner_customer: String
Output only. The resource name of the conversion value rule set’s owner customer. When the value rule set is inherited from a manager customer, owner_customer will be the resource name of the manager whereas the customer in the resource_name will be of the requesting serving customer. ** Read-only **
attachment_type: i32
Immutable. Defines the scope where the conversion value rule set is attached.
campaign: String
The resource name of the campaign when the conversion value rule set is attached to a campaign.
status: i32
Output only. The status of the conversion value rule set. ** Read-only **
conversion_action_categories: Vec<i32>
Immutable. The conversion action categories of the conversion value rule set.
Implementations§
source§impl ConversionValueRuleSet
impl ConversionValueRuleSet
sourcepub fn dimensions(
&self,
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<ValueRuleSetDimension>>
pub fn dimensions( &self, ) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<ValueRuleSetDimension>>
Returns an iterator which yields the valid enum values contained in dimensions
.
sourcepub fn push_dimensions(&mut self, value: ValueRuleSetDimension)
pub fn push_dimensions(&mut self, value: ValueRuleSetDimension)
Appends the provided enum value to dimensions
.
sourcepub fn attachment_type(&self) -> ValueRuleSetAttachmentType
pub fn attachment_type(&self) -> ValueRuleSetAttachmentType
Returns the enum value of attachment_type
, or the default if the field is set to an invalid enum value.
sourcepub fn set_attachment_type(&mut self, value: ValueRuleSetAttachmentType)
pub fn set_attachment_type(&mut self, value: ValueRuleSetAttachmentType)
Sets attachment_type
to the provided enum value.
sourcepub fn status(&self) -> ConversionValueRuleSetStatus
pub fn status(&self) -> ConversionValueRuleSetStatus
Returns the enum value of status
, or the default if the field is set to an invalid enum value.
sourcepub fn set_status(&mut self, value: ConversionValueRuleSetStatus)
pub fn set_status(&mut self, value: ConversionValueRuleSetStatus)
Sets status
to the provided enum value.
sourcepub fn conversion_action_categories(
&self,
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<ConversionActionCategory>>
pub fn conversion_action_categories( &self, ) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<ConversionActionCategory>>
Returns an iterator which yields the valid enum values contained in conversion_action_categories
.
sourcepub fn push_conversion_action_categories(
&mut self,
value: ConversionActionCategory,
)
pub fn push_conversion_action_categories( &mut self, value: ConversionActionCategory, )
Appends the provided enum value to conversion_action_categories
.
Trait Implementations§
source§impl Clone for ConversionValueRuleSet
impl Clone for ConversionValueRuleSet
source§fn clone(&self) -> ConversionValueRuleSet
fn clone(&self) -> ConversionValueRuleSet
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ConversionValueRuleSet
impl Debug for ConversionValueRuleSet
source§impl Default for ConversionValueRuleSet
impl Default for ConversionValueRuleSet
source§impl Message for ConversionValueRuleSet
impl Message for ConversionValueRuleSet
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for ConversionValueRuleSet
impl PartialEq for ConversionValueRuleSet
source§fn eq(&self, other: &ConversionValueRuleSet) -> bool
fn eq(&self, other: &ConversionValueRuleSet) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConversionValueRuleSet
Auto Trait Implementations§
impl Freeze for ConversionValueRuleSet
impl RefUnwindSafe for ConversionValueRuleSet
impl Send for ConversionValueRuleSet
impl Sync for ConversionValueRuleSet
impl Unpin for ConversionValueRuleSet
impl UnwindSafe for ConversionValueRuleSet
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request