[][src]Struct google_content2::ProductShipping

pub struct ProductShipping {
    pub location_id: Option<String>,
    pub service: Option<String>,
    pub postal_code: Option<String>,
    pub country: Option<String>,
    pub price: Option<Price>,
    pub region: Option<String>,
    pub location_group_name: Option<String>,
}

There is no detailed description.

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

Fields

location_id: Option<String>

The numeric ID of a location that the shipping rate applies to as defined in the AdWords API.

service: Option<String>

A free-form description of the service class or delivery speed.

postal_code: Option<String>

The postal code range that the shipping rate applies to, represented by a postal code, a postal code prefix followed by a * wildcard, a range between two postal codes or two postal code prefixes of equal length.

country: Option<String>

The CLDR territory code of the country to which an item will ship.

price: Option<Price>

Fixed shipping price, represented as a number.

region: Option<String>

The geographic region to which a shipping rate applies.

location_group_name: Option<String>

The location where the shipping is applicable, represented by a location group name.

Trait Implementations

impl Clone for ProductShipping[src]

impl Debug for ProductShipping[src]

impl Default for ProductShipping[src]

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

impl Part for ProductShipping[src]

impl Serialize for ProductShipping[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