pub struct InventoryPickup {
pub pickup_method: Option<String>,
pub pickup_sla: Option<String>,
}Expand description
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§
Source§impl Clone for InventoryPickup
impl Clone for InventoryPickup
Source§fn clone(&self) -> InventoryPickup
fn clone(&self) -> InventoryPickup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more