/*
* 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};
/// AllOwnersConstraint : A constraint that applies to all owners. If no constraint is specified, defer to any individual owner constraints.
/// A constraint that applies to all owners. If no constraint is specified, defer to any individual owner constraints.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum AllOwnersConstraint {
#[serde(rename = "MUST_MATCH")]
MustMatch,
}
impl std::fmt::Display for AllOwnersConstraint {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::MustMatch => write!(f, "MUST_MATCH"),
}
}
}
impl Default for AllOwnersConstraint {
fn default() -> AllOwnersConstraint {
Self::MustMatch
}
}