amazon_spapi/models/fulfillment_inbound_v0/
get_prep_instructions_result.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GetPrepInstructionsResult {
17 #[serde(rename = "SKUPrepInstructionsList", skip_serializing_if = "Option::is_none")]
19 pub sku_prep_instructions_list: Option<Vec<models::fulfillment_inbound_v0::SkuPrepInstructions>>,
20 #[serde(rename = "InvalidSKUList", skip_serializing_if = "Option::is_none")]
22 pub invalid_sku_list: Option<Vec<models::fulfillment_inbound_v0::InvalidSku>>,
23 #[serde(rename = "ASINPrepInstructionsList", skip_serializing_if = "Option::is_none")]
25 pub asin_prep_instructions_list: Option<Vec<models::fulfillment_inbound_v0::AsinPrepInstructions>>,
26 #[serde(rename = "InvalidASINList", skip_serializing_if = "Option::is_none")]
28 pub invalid_asin_list: Option<Vec<models::fulfillment_inbound_v0::InvalidAsin>>,
29}
30
31impl GetPrepInstructionsResult {
32 pub fn new() -> GetPrepInstructionsResult {
34 GetPrepInstructionsResult {
35 sku_prep_instructions_list: None,
36 invalid_sku_list: None,
37 asin_prep_instructions_list: None,
38 invalid_asin_list: None,
39 }
40 }
41}
42