/*
* 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};
/// PlacementOptionSummary : Summary information about a placement option.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PlacementOptionSummary {
/// The identifier of a placement option. A placement option represents the shipment splits and destinations of SKUs.
#[serde(rename = "placementOptionId")]
pub placement_option_id: String,
/// The status of a placement option. Possible values: `OFFERED`, `ACCEPTED`.
#[serde(rename = "status")]
pub status: String,
}
impl PlacementOptionSummary {
/// Summary information about a placement option.
pub fn new(placement_option_id: String, status: String) -> PlacementOptionSummary {
PlacementOptionSummary {
placement_option_id,
status,
}
}
}