1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Selling Partner API for Fulfillment Inbound
 *
 * The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.
 *
 * The version of the OpenAPI document: v0
 * 
 * Generated by: https://openapi-generator.tech
 */




#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct GetInboundGuidanceResult {
    /// A list of SKU inbound guidance information.
    #[serde(default, rename = "SKUInboundGuidanceList", skip_serializing_if = "Option::is_none")]
    pub sku_inbound_guidance_list: Option<Vec<crate::models::SkuInboundGuidance>>,
    /// A list of invalid SKU values and the reason they are invalid.
    #[serde(default, rename = "InvalidSKUList", skip_serializing_if = "Option::is_none")]
    pub invalid_sku_list: Option<Vec<crate::models::InvalidSku>>,
    /// A list of ASINs and their associated inbound guidance.
    #[serde(default, rename = "ASINInboundGuidanceList", skip_serializing_if = "Option::is_none")]
    pub asin_inbound_guidance_list: Option<Vec<crate::models::AsinInboundGuidance>>,
    /// A list of invalid ASIN values and the reasons they are invalid.
    #[serde(default, rename = "InvalidASINList", skip_serializing_if = "Option::is_none")]
    pub invalid_asin_list: Option<Vec<crate::models::InvalidAsin>>,
}

impl GetInboundGuidanceResult {
    pub fn new() -> GetInboundGuidanceResult {
        GetInboundGuidanceResult {
            sku_inbound_guidance_list: None,
            invalid_sku_list: None,
            asin_inbound_guidance_list: None,
            invalid_asin_list: None,
        }
    }
}