[][src]Struct google_content2::InventoryPickup

pub struct InventoryPickup {
    pub pickup_method: Option<String>,
    pub pickup_sla: Option<String>,
}

There is no detailed description.

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

Fields

pickup_method: Option<String>

Whether store pickup is available for this offer and whether the pickup option should be shown as buy, reserve, or not supported. Only supported for local inventory. Unless the value is "not supported", must be submitted together with pickupSla.

Acceptable values are:

  • "buy"
  • "not supported"
  • "reserve"
  • "ship to store"
pickup_sla: Option<String>

The expected date that an order will be ready for pickup, relative to when the order is placed. Only supported for local inventory. Must be submitted together with pickupMethod.

Acceptable values are:

  • "five day"
  • "four day"
  • "multi day"
  • "multi week"
  • "next day"
  • "same day"
  • "seven day"
  • "six day"
  • "three day"
  • "two day"

Trait Implementations

impl Clone for InventoryPickup[src]

impl Debug for InventoryPickup[src]

impl Default for InventoryPickup[src]

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

impl Part for InventoryPickup[src]

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