amazon_spapi/models/fulfillment_inbound_v0/
sku_prep_instructions.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct SkuPrepInstructions {
17 #[serde(rename = "SellerSKU", skip_serializing_if = "Option::is_none")]
19 pub seller_sku: Option<String>,
20 #[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 #[serde(rename = "PrepInstructionList", skip_serializing_if = "Option::is_none")]
29 pub prep_instruction_list: Option<Vec<models::fulfillment_inbound_v0::PrepInstruction>>,
30 #[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 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