pub struct SkuPrepInstructions {
pub seller_sku: Option<String>,
pub asin: Option<String>,
pub barcode_instruction: Option<BarcodeInstruction>,
pub prep_guidance: Option<PrepGuidance>,
pub prep_instruction_list: Option<Vec<PrepInstruction>>,
pub amazon_prep_fees_details_list: Option<Vec<AmazonPrepFeesDetails>>,
}Expand description
SkuPrepInstructions : Labeling requirements and item preparation instructions to help you prepare items for shipment to Amazon’s fulfillment network.
Fields§
§seller_sku: Option<String>The seller SKU of the item.
asin: Option<String>The Amazon Standard Identification Number (ASIN) of the item.
barcode_instruction: Option<BarcodeInstruction>§prep_guidance: Option<PrepGuidance>§prep_instruction_list: Option<Vec<PrepInstruction>>A list of preparation instructions to help with item sourcing decisions.
amazon_prep_fees_details_list: Option<Vec<AmazonPrepFeesDetails>>A list of preparation instructions and fees for Amazon to prep goods for shipment.
Implementations§
Source§impl SkuPrepInstructions
impl SkuPrepInstructions
Sourcepub fn new() -> SkuPrepInstructions
pub fn new() -> SkuPrepInstructions
Labeling requirements and item preparation instructions to help you prepare items for shipment to Amazon’s fulfillment network.
Trait Implementations§
Source§impl Clone for SkuPrepInstructions
impl Clone for SkuPrepInstructions
Source§fn clone(&self) -> SkuPrepInstructions
fn clone(&self) -> SkuPrepInstructions
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 SkuPrepInstructions
impl Debug for SkuPrepInstructions
Source§impl Default for SkuPrepInstructions
impl Default for SkuPrepInstructions
Source§fn default() -> SkuPrepInstructions
fn default() -> SkuPrepInstructions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkuPrepInstructions
impl<'de> Deserialize<'de> for SkuPrepInstructions
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
Source§impl PartialEq for SkuPrepInstructions
impl PartialEq for SkuPrepInstructions
Source§impl Serialize for SkuPrepInstructions
impl Serialize for SkuPrepInstructions
impl StructuralPartialEq for SkuPrepInstructions
Auto Trait Implementations§
impl Freeze for SkuPrepInstructions
impl RefUnwindSafe for SkuPrepInstructions
impl Send for SkuPrepInstructions
impl Sync for SkuPrepInstructions
impl Unpin for SkuPrepInstructions
impl UnwindSafe for SkuPrepInstructions
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