[][src]Struct google_gan1_beta1::LinkSpecialOffers

pub struct LinkSpecialOffers {
    pub price_cut: Option<Money>,
    pub price_cut_min: Option<Money>,
    pub free_shipping: Option<bool>,
    pub promotion_codes: Option<Vec<String>>,
    pub percent_off: Option<f64>,
    pub percent_off_min: Option<Money>,
    pub free_gift: Option<bool>,
    pub free_shipping_min: Option<Money>,
}

Special offers on the link.

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

Fields

price_cut: Option<Money>

Price cut on the purchase

price_cut_min: Option<Money>

Minimum purchase amount for price cut promotion

free_shipping: Option<bool>

Whether there is free shipping

promotion_codes: Option<Vec<String>>

List of promotion code associated with the link

percent_off: Option<f64>

Percent off on the purchase

percent_off_min: Option<Money>

Minimum purchase amount for percent off promotion

free_gift: Option<bool>

Whether there is a free gift

free_shipping_min: Option<Money>

Minimum purchase amount for free shipping promotion

Trait Implementations

impl Part for LinkSpecialOffers[src]

impl NestedType for LinkSpecialOffers[src]

impl Default for LinkSpecialOffers[src]

impl Clone for LinkSpecialOffers[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for LinkSpecialOffers[src]

impl Serialize for LinkSpecialOffers[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]