[][src]Struct google_analyticsreporting4::TransactionData

pub struct TransactionData {
    pub transaction_tax: Option<f64>,
    pub transaction_id: Option<String>,
    pub transaction_revenue: Option<f64>,
    pub transaction_shipping: Option<f64>,
}

Represents details collected when the visitor performs a transaction on the page.

This type is not used in any activity, and only used as part of another schema.

Fields

transaction_tax: Option<f64>

Total tax for the transaction.

transaction_id: Option<String>

The transaction ID, supplied by the e-commerce tracking method, for the purchase in the shopping cart.

transaction_revenue: Option<f64>

The total sale revenue (excluding shipping and tax) of the transaction.

transaction_shipping: Option<f64>

Total cost of shipping.

Trait Implementations

impl Clone for TransactionData[src]

impl Debug for TransactionData[src]

impl Default for TransactionData[src]

impl<'de> Deserialize<'de> for TransactionData[src]

impl Part for TransactionData[src]

impl Serialize for TransactionData[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any