Struct gapi_grpc::google::ads::googleads::v4::services::ClickConversion[][src]

pub struct ClickConversion {
    pub gclid: Option<String>,
    pub conversion_action: Option<String>,
    pub conversion_date_time: Option<String>,
    pub conversion_value: Option<f64>,
    pub currency_code: Option<String>,
    pub order_id: Option<String>,
    pub external_attribution_data: Option<ExternalAttributionData>,
}

A click conversion.

Fields

gclid: Option<String>

The Google click ID (gclid) associated with this conversion.

conversion_action: Option<String>

Resource name of the conversion action associated with this conversion. Note: Although this resource name consists of a customer id and a conversion action id, validation will ignore the customer id and use the conversion action id as the sole identifier of the conversion action.

conversion_date_time: Option<String>

The date time at which the conversion occurred. Must be after the click time. The timezone must be specified. The format is “yyyy-mm-dd hh:mm:ss+|-hh:mm”, e.g. “2019-01-01 12:32:45-08:00”.

conversion_value: Option<f64>

The value of the conversion for the advertiser.

currency_code: Option<String>

Currency associated with the conversion value. This is the ISO 4217 3-character currency code. For example: USD, EUR.

order_id: Option<String>

The order ID associated with the conversion. An order id can only be used for one conversion per conversion action.

external_attribution_data: Option<ExternalAttributionData>

Additional data about externally attributed conversions. This field is required for conversions with an externally attributed conversion action, but should not be set otherwise.

Trait Implementations

impl Clone for ClickConversion[src]

impl Debug for ClickConversion[src]

impl Default for ClickConversion[src]

impl Message for ClickConversion[src]

impl PartialEq<ClickConversion> for ClickConversion[src]

impl StructuralPartialEq for ClickConversion[src]

Auto Trait Implementations

impl RefUnwindSafe for ClickConversion

impl Send for ClickConversion

impl Sync for ClickConversion

impl Unpin for ClickConversion

impl UnwindSafe for ClickConversion

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]