/*
* 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};
/// TrackingDetailsInput : Tracking information input for Less-Than-Truckload (LTL) and Small Parcel Delivery (SPD) shipments.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TrackingDetailsInput {
#[serde(rename = "ltlTrackingDetail", skip_serializing_if = "Option::is_none")]
pub ltl_tracking_detail: Option<Box<models::fulfillment_inbound_2024_03_20::LtlTrackingDetailInput>>,
#[serde(rename = "spdTrackingDetail", skip_serializing_if = "Option::is_none")]
pub spd_tracking_detail: Option<Box<models::fulfillment_inbound_2024_03_20::SpdTrackingDetailInput>>,
}
impl TrackingDetailsInput {
/// Tracking information input for Less-Than-Truckload (LTL) and Small Parcel Delivery (SPD) shipments.
pub fn new() -> TrackingDetailsInput {
TrackingDetailsInput {
ltl_tracking_detail: None,
spd_tracking_detail: None,
}
}
}