amazon_spapi/models/fulfillment_inbound_v0/
sku_prep_instructions.rs

1/*
2 * Selling Partner API for Fulfillment Inbound
3 *
4 * The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.
5 *
6 * The version of the OpenAPI document: v0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// SkuPrepInstructions : Labeling requirements and item preparation instructions to help you prepare items for shipment to Amazon's fulfillment network.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct SkuPrepInstructions {
17    /// The seller SKU of the item.
18    #[serde(rename = "SellerSKU", skip_serializing_if = "Option::is_none")]
19    pub seller_sku: Option<String>,
20    /// The Amazon Standard Identification Number (ASIN) of the item.
21    #[serde(rename = "ASIN", skip_serializing_if = "Option::is_none")]
22    pub asin: Option<String>,
23    #[serde(rename = "BarcodeInstruction", skip_serializing_if = "Option::is_none")]
24    pub barcode_instruction: Option<models::fulfillment_inbound_v0::BarcodeInstruction>,
25    #[serde(rename = "PrepGuidance", skip_serializing_if = "Option::is_none")]
26    pub prep_guidance: Option<models::fulfillment_inbound_v0::PrepGuidance>,
27    /// A list of preparation instructions to help with item sourcing decisions.
28    #[serde(rename = "PrepInstructionList", skip_serializing_if = "Option::is_none")]
29    pub prep_instruction_list: Option<Vec<models::fulfillment_inbound_v0::PrepInstruction>>,
30    /// A list of preparation instructions and fees for Amazon to prep goods for shipment.
31    #[serde(rename = "AmazonPrepFeesDetailsList", skip_serializing_if = "Option::is_none")]
32    pub amazon_prep_fees_details_list: Option<Vec<models::fulfillment_inbound_v0::AmazonPrepFeesDetails>>,
33}
34
35impl SkuPrepInstructions {
36    /// Labeling requirements and item preparation instructions to help you prepare items for shipment to Amazon's fulfillment network.
37    pub fn new() -> SkuPrepInstructions {
38        SkuPrepInstructions {
39            seller_sku: None,
40            asin: None,
41            barcode_instruction: None,
42            prep_guidance: None,
43            prep_instruction_list: None,
44            amazon_prep_fees_details_list: None,
45        }
46    }
47}
48