/*
* The Selling Partner API for FBA inbound operations.
*
* The Selling Partner API for Fulfillment By Amazon (FBA) Inbound. The FBA Inbound API enables building inbound workflows to create, manage, and send shipments into Amazon's fulfillment network. The API has interoperability with the Send-to-Amazon user interface.
*
* The version of the OpenAPI document: 2024-03-20
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// RequestedUpdates : Objects that were included in the update request.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RequestedUpdates {
/// A list of boxes that will be present in the shipment after the update.
#[serde(rename = "boxes", skip_serializing_if = "Option::is_none")]
pub boxes: Option<Vec<models::fulfillment_inbound_2024_03_20::BoxUpdateInput>>,
/// A list of all items that will be present in the shipment after the update.
#[serde(rename = "items", skip_serializing_if = "Option::is_none")]
pub items: Option<Vec<models::fulfillment_inbound_2024_03_20::ItemInput>>,
}
impl RequestedUpdates {
/// Objects that were included in the update request.
pub fn new() -> RequestedUpdates {
RequestedUpdates {
boxes: None,
items: None,
}
}
}