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
42
43
44
45
46
47
/*
 * Selling Partner APIs for Fulfillment Outbound
 *
 * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment network. You can get information on both potential and existing fulfillment orders.
 *
 * The version of the OpenAPI document: 2020-07-01
 * 
 * Generated by: https://openapi-generator.tech
 */

/// FeatureSku : Information about an SKU, including the count available, identifiers, and a list of overlapping SKUs that share the same inventory pool.



#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct FeatureSku {
    /// Used to identify an item in the given marketplace. SellerSKU is qualified by the seller's SellerId, which is included with every operation that you submit.
    #[serde(default, rename = "sellerSku", skip_serializing_if = "Option::is_none")]
    pub seller_sku: Option<String>,
    /// The unique SKU used by Amazon's fulfillment network.
    #[serde(default, rename = "fnSku", skip_serializing_if = "Option::is_none")]
    pub fn_sku: Option<String>,
    /// The Amazon Standard Identification Number (ASIN) of the item.
    #[serde(default, rename = "asin", skip_serializing_if = "Option::is_none")]
    pub asin: Option<String>,
    /// The number of SKUs available for this service.
    #[serde(default, rename = "skuCount", skip_serializing_if = "Option::is_none")]
    pub sku_count: Option<f32>,
    /// Other seller SKUs that are shared across the same inventory.
    #[serde(default, rename = "overlappingSkus", skip_serializing_if = "Option::is_none")]
    pub overlapping_skus: Option<Vec<String>>,
}

impl FeatureSku {
    /// Information about an SKU, including the count available, identifiers, and a list of overlapping SKUs that share the same inventory pool.
    pub fn new() -> FeatureSku {
        FeatureSku {
            seller_sku: None,
            fn_sku: None,
            asin: None,
            sku_count: None,
            overlapping_skus: None,
        }
    }
}