amazon_spapi/models/fulfillment_inbound_v0/
get_prep_instructions_result.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/// GetPrepInstructionsResult : Result for the get prep instructions operation
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GetPrepInstructionsResult {
17    /// A list of SKU labeling requirements and item preparation instructions.
18    #[serde(rename = "SKUPrepInstructionsList", skip_serializing_if = "Option::is_none")]
19    pub sku_prep_instructions_list: Option<Vec<models::fulfillment_inbound_v0::SkuPrepInstructions>>,
20    /// A list of invalid SKU values and the reason they are invalid.
21    #[serde(rename = "InvalidSKUList", skip_serializing_if = "Option::is_none")]
22    pub invalid_sku_list: Option<Vec<models::fulfillment_inbound_v0::InvalidSku>>,
23    /// A list of item preparation instructions.
24    #[serde(rename = "ASINPrepInstructionsList", skip_serializing_if = "Option::is_none")]
25    pub asin_prep_instructions_list: Option<Vec<models::fulfillment_inbound_v0::AsinPrepInstructions>>,
26    /// A list of invalid ASIN values and the reasons they are invalid.
27    #[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    /// Result for the get prep instructions operation
33    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