Struct google_api_proto::google::ads::googleads::v17::common::PromotionFeedItem
source · pub struct PromotionFeedItem {Show 13 fields
pub promotion_target: Option<String>,
pub discount_modifier: i32,
pub promotion_start_date: Option<String>,
pub promotion_end_date: Option<String>,
pub occasion: i32,
pub final_urls: Vec<String>,
pub final_mobile_urls: Vec<String>,
pub tracking_url_template: Option<String>,
pub url_custom_parameters: Vec<CustomParameter>,
pub final_url_suffix: Option<String>,
pub language_code: Option<String>,
pub discount_type: Option<DiscountType>,
pub promotion_trigger: Option<PromotionTrigger>,
}
Expand description
Represents a Promotion extension.
Fields§
§promotion_target: Option<String>
A freeform description of what the promotion is targeting. This field is required.
discount_modifier: i32
Enum that modifies the qualification of the discount.
promotion_start_date: Option<String>
Start date of when the promotion is eligible to be redeemed.
promotion_end_date: Option<String>
Last date when the promotion is eligible to be redeemed.
occasion: i32
The occasion the promotion was intended for. If an occasion is set, the redemption window will need to fall within the date range associated with the occasion.
final_urls: Vec<String>
A list of possible final URLs after all cross domain redirects. This field is required.
final_mobile_urls: Vec<String>
A list of possible final mobile URLs after all cross domain redirects.
tracking_url_template: Option<String>
URL template for constructing a tracking URL.
url_custom_parameters: Vec<CustomParameter>
A list of mappings to be used for substituting URL custom parameter tags in the tracking_url_template, final_urls, and/or final_mobile_urls.
final_url_suffix: Option<String>
URL template for appending params to landing page URLs served with parallel tracking.
language_code: Option<String>
The language of the promotion. Represented as BCP 47 language tag.
discount_type: Option<DiscountType>
Discount type, can be percentage off or amount off.
promotion_trigger: Option<PromotionTrigger>
Promotion trigger. Can be by promotion code or promo by eligible order amount.
Implementations§
source§impl PromotionFeedItem
impl PromotionFeedItem
sourcepub fn discount_modifier(&self) -> PromotionExtensionDiscountModifier
pub fn discount_modifier(&self) -> PromotionExtensionDiscountModifier
Returns the enum value of discount_modifier
, or the default if the field is set to an invalid enum value.
sourcepub fn set_discount_modifier(
&mut self,
value: PromotionExtensionDiscountModifier,
)
pub fn set_discount_modifier( &mut self, value: PromotionExtensionDiscountModifier, )
Sets discount_modifier
to the provided enum value.
sourcepub fn occasion(&self) -> PromotionExtensionOccasion
pub fn occasion(&self) -> PromotionExtensionOccasion
Returns the enum value of occasion
, or the default if the field is set to an invalid enum value.
sourcepub fn set_occasion(&mut self, value: PromotionExtensionOccasion)
pub fn set_occasion(&mut self, value: PromotionExtensionOccasion)
Sets occasion
to the provided enum value.
sourcepub fn promotion_target(&self) -> &str
pub fn promotion_target(&self) -> &str
Returns the value of promotion_target
, or the default value if promotion_target
is unset.
sourcepub fn promotion_start_date(&self) -> &str
pub fn promotion_start_date(&self) -> &str
Returns the value of promotion_start_date
, or the default value if promotion_start_date
is unset.
sourcepub fn promotion_end_date(&self) -> &str
pub fn promotion_end_date(&self) -> &str
Returns the value of promotion_end_date
, or the default value if promotion_end_date
is unset.
sourcepub fn tracking_url_template(&self) -> &str
pub fn tracking_url_template(&self) -> &str
Returns the value of tracking_url_template
, or the default value if tracking_url_template
is unset.
sourcepub fn final_url_suffix(&self) -> &str
pub fn final_url_suffix(&self) -> &str
Returns the value of final_url_suffix
, or the default value if final_url_suffix
is unset.
sourcepub fn language_code(&self) -> &str
pub fn language_code(&self) -> &str
Returns the value of language_code
, or the default value if language_code
is unset.
Trait Implementations§
source§impl Clone for PromotionFeedItem
impl Clone for PromotionFeedItem
source§fn clone(&self) -> PromotionFeedItem
fn clone(&self) -> PromotionFeedItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PromotionFeedItem
impl Debug for PromotionFeedItem
source§impl Default for PromotionFeedItem
impl Default for PromotionFeedItem
source§impl Message for PromotionFeedItem
impl Message for PromotionFeedItem
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 PromotionFeedItem
impl PartialEq for PromotionFeedItem
source§fn eq(&self, other: &PromotionFeedItem) -> bool
fn eq(&self, other: &PromotionFeedItem) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PromotionFeedItem
Auto Trait Implementations§
impl Freeze for PromotionFeedItem
impl RefUnwindSafe for PromotionFeedItem
impl Send for PromotionFeedItem
impl Sync for PromotionFeedItem
impl Unpin for PromotionFeedItem
impl UnwindSafe for PromotionFeedItem
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