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§
Source§impl 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§
Source§impl Clone for AutomatedShippingSettings
impl Clone for AutomatedShippingSettings
Source§fn clone(&self) -> AutomatedShippingSettings
fn clone(&self) -> AutomatedShippingSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutomatedShippingSettings
impl Debug for AutomatedShippingSettings
Source§impl Default for AutomatedShippingSettings
impl Default for AutomatedShippingSettings
Source§fn default() -> AutomatedShippingSettings
fn default() -> AutomatedShippingSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomatedShippingSettings
impl<'de> Deserialize<'de> for AutomatedShippingSettings
Source§fn 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
impl StructuralPartialEq for AutomatedShippingSettings
Auto Trait Implementations§
impl Freeze for AutomatedShippingSettings
impl RefUnwindSafe for AutomatedShippingSettings
impl Send for AutomatedShippingSettings
impl Sync for AutomatedShippingSettings
impl Unpin for AutomatedShippingSettings
impl UnwindSafe for AutomatedShippingSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more