use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetPrepInstructionsResult {
#[serde(rename = "SKUPrepInstructionsList", skip_serializing_if = "Option::is_none")]
pub sku_prep_instructions_list: Option<Vec<models::fulfillment_inbound_v0::SkuPrepInstructions>>,
#[serde(rename = "InvalidSKUList", skip_serializing_if = "Option::is_none")]
pub invalid_sku_list: Option<Vec<models::fulfillment_inbound_v0::InvalidSku>>,
#[serde(rename = "ASINPrepInstructionsList", skip_serializing_if = "Option::is_none")]
pub asin_prep_instructions_list: Option<Vec<models::fulfillment_inbound_v0::AsinPrepInstructions>>,
#[serde(rename = "InvalidASINList", skip_serializing_if = "Option::is_none")]
pub invalid_asin_list: Option<Vec<models::fulfillment_inbound_v0::InvalidAsin>>,
}
impl GetPrepInstructionsResult {
pub fn new() -> GetPrepInstructionsResult {
GetPrepInstructionsResult {
sku_prep_instructions_list: None,
invalid_sku_list: None,
asin_prep_instructions_list: None,
invalid_asin_list: None,
}
}
}