pub struct ConversionAction {
Show 22 fields pub resource_name: String, pub id: Option<i64>, pub name: Option<String>, pub status: i32, pub type: i32, pub origin: i32, pub primary_for_goal: Option<bool>, pub category: i32, pub owner_customer: Option<String>, pub include_in_conversions_metric: Option<bool>, pub click_through_lookback_window_days: Option<i64>, pub view_through_lookback_window_days: Option<i64>, pub value_settings: Option<ValueSettings>, pub counting_type: i32, pub attribution_model_settings: Option<AttributionModelSettings>, pub tag_snippets: Vec<TagSnippet>, pub phone_call_duration_seconds: Option<i64>, pub app_id: Option<String>, pub mobile_app_vendor: i32, pub firebase_settings: Option<FirebaseSettings>, pub third_party_app_analytics_settings: Option<ThirdPartyAppAnalyticsSettings>, pub google_analytics_4_settings: Option<GoogleAnalytics4Settings>,
}
Expand description

A conversion action.

Fields§

§resource_name: String

Immutable. The resource name of the conversion action. Conversion action resource names have the form:

customers/{customer_id}/conversionActions/{conversion_action_id}

§id: Option<i64>

Output only. The ID of the conversion action.

§name: Option<String>

The name of the conversion action.

This field is required and should not be empty when creating new conversion actions.

§status: i32

The status of this conversion action for conversion event accrual.

§type: i32

Immutable. The type of this conversion action.

§origin: i32

Output only. The conversion origin of this conversion action.

§primary_for_goal: Option<bool>

If a conversion action’s primary_for_goal bit is false, the conversion action is non-biddable for all campaigns regardless of their customer conversion goal or campaign conversion goal. However, custom conversion goals do not respect primary_for_goal, so if a campaign has a custom conversion goal configured with a primary_for_goal = false conversion action, that conversion action is still biddable. By default, primary_for_goal will be true if not set. In V9, primary_for_goal can only be set to false after creation through an ‘update’ operation because it’s not declared as optional.

§category: i32

The category of conversions reported for this conversion action.

§owner_customer: Option<String>

Output only. The resource name of the conversion action owner customer, or null if this is a system-defined conversion action.

§include_in_conversions_metric: Option<bool>

Whether this conversion action should be included in the “conversions” metric.

§click_through_lookback_window_days: Option<i64>

The maximum number of days that may elapse between an interaction (for example, a click) and a conversion event.

§view_through_lookback_window_days: Option<i64>

The maximum number of days which may elapse between an impression and a conversion without an interaction.

§value_settings: Option<ValueSettings>

Settings related to the value for conversion events associated with this conversion action.

§counting_type: i32

How to count conversion events for the conversion action.

§attribution_model_settings: Option<AttributionModelSettings>

Settings related to this conversion action’s attribution model.

§tag_snippets: Vec<TagSnippet>

Output only. The snippets used for tracking conversions.

§phone_call_duration_seconds: Option<i64>

The phone call duration in seconds after which a conversion should be reported for this conversion action.

The value must be between 0 and 10000, inclusive.

§app_id: Option<String>

App ID for an app conversion action.

§mobile_app_vendor: i32

Output only. Mobile app vendor for an app conversion action.

§firebase_settings: Option<FirebaseSettings>

Output only. Firebase settings for Firebase conversion types.

§third_party_app_analytics_settings: Option<ThirdPartyAppAnalyticsSettings>

Output only. Third Party App Analytics settings for third party conversion types.

§google_analytics_4_settings: Option<GoogleAnalytics4Settings>

Output only. Google Analytics 4 settings for Google Analytics 4 conversion types.

Implementations§

source§

impl ConversionAction

source

pub fn status(&self) -> ConversionActionStatus

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

source

pub fn set_status(&mut self, value: ConversionActionStatus)

Sets status to the provided enum value.

source

pub fn type(&self) -> ConversionActionType

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

source

pub fn set_type(&mut self, value: ConversionActionType)

Sets type to the provided enum value.

source

pub fn category(&self) -> ConversionActionCategory

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

source

pub fn set_category(&mut self, value: ConversionActionCategory)

Sets category to the provided enum value.

source

pub fn counting_type(&self) -> ConversionActionCountingType

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

source

pub fn set_counting_type(&mut self, value: ConversionActionCountingType)

Sets counting_type to the provided enum value.

source

pub fn mobile_app_vendor(&self) -> MobileAppVendor

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

source

pub fn set_mobile_app_vendor(&mut self, value: MobileAppVendor)

Sets mobile_app_vendor to the provided enum value.

source

pub fn id(&self) -> i64

Returns the value of id, or the default value if id is unset.

source

pub fn name(&self) -> &str

Returns the value of name, or the default value if name is unset.

source

pub fn owner_customer(&self) -> &str

Returns the value of owner_customer, or the default value if owner_customer is unset.

source

pub fn include_in_conversions_metric(&self) -> bool

Returns the value of include_in_conversions_metric, or the default value if include_in_conversions_metric is unset.

source

pub fn click_through_lookback_window_days(&self) -> i64

Returns the value of click_through_lookback_window_days, or the default value if click_through_lookback_window_days is unset.

source

pub fn view_through_lookback_window_days(&self) -> i64

Returns the value of view_through_lookback_window_days, or the default value if view_through_lookback_window_days is unset.

source

pub fn phone_call_duration_seconds(&self) -> i64

Returns the value of phone_call_duration_seconds, or the default value if phone_call_duration_seconds is unset.

source

pub fn app_id(&self) -> &str

Returns the value of app_id, or the default value if app_id is unset.

source

pub fn origin(&self) -> ConversionOrigin

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

source

pub fn set_origin(&mut self, value: ConversionOrigin)

Sets origin to the provided enum value.

source

pub fn primary_for_goal(&self) -> bool

Returns the value of primary_for_goal, or the default value if primary_for_goal is unset.

Trait Implementations§

source§

impl Clone for ConversionAction

source§

fn clone(&self) -> ConversionAction

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ConversionAction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ConversionAction

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Message for ConversionAction

source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
source§

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message to a buffer. Read more
source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
source§

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
source§

fn decode<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes an instance of the message from a buffer. Read more
source§

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes a length-delimited instance of the message from the buffer.
source§

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
source§

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
source§

impl PartialEq for ConversionAction

source§

fn eq(&self, other: &ConversionAction) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for ConversionAction

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more