pub struct AutomatedShippingSettings {
pub has_automated_shipping_settings: Option<bool>,
pub automated_carrier: Option<String>,
pub automated_ship_method: Option<String>,
}Expand description
AutomatedShippingSettings : Contains information regarding the Shipping Settings Automation program, such as whether the order’s shipping settings were generated automatically, and what those settings are.
Fields
has_automated_shipping_settings: Option<bool>When true, this order has automated shipping settings generated by Amazon. This order could be identified as an SSA order.
automated_carrier: Option<String>Auto-generated carrier for SSA orders.
automated_ship_method: Option<String>Auto-generated ship method for SSA orders.
Implementations
sourceimpl AutomatedShippingSettings
impl AutomatedShippingSettings
sourcepub fn new() -> AutomatedShippingSettings
pub fn new() -> AutomatedShippingSettings
Contains information regarding the Shipping Settings Automation program, such as whether the order’s shipping settings were generated automatically, and what those settings are.
Trait Implementations
sourceimpl Clone for AutomatedShippingSettings
impl Clone for AutomatedShippingSettings
sourcefn clone(&self) -> AutomatedShippingSettings
fn clone(&self) -> AutomatedShippingSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AutomatedShippingSettings
impl Debug for AutomatedShippingSettings
sourceimpl Default for AutomatedShippingSettings
impl Default for AutomatedShippingSettings
sourcefn default() -> AutomatedShippingSettings
fn default() -> AutomatedShippingSettings
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AutomatedShippingSettings
impl<'de> Deserialize<'de> for AutomatedShippingSettings
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<AutomatedShippingSettings> for AutomatedShippingSettings
impl PartialEq<AutomatedShippingSettings> for AutomatedShippingSettings
sourcefn eq(&self, other: &AutomatedShippingSettings) -> bool
fn eq(&self, other: &AutomatedShippingSettings) -> bool
sourceimpl Serialize for AutomatedShippingSettings
impl Serialize for AutomatedShippingSettings
impl StructuralPartialEq for AutomatedShippingSettings
Auto Trait Implementations
impl RefUnwindSafe for AutomatedShippingSettings
impl Send for AutomatedShippingSettings
impl Sync for AutomatedShippingSettings
impl Unpin for AutomatedShippingSettings
impl UnwindSafe for AutomatedShippingSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more