/*
* Selling Partner API for Merchant Fulfillment
*
* With the Selling Partner API for Merchant Fulfillment, you can build applications that sellers can use to purchase shipping for non-Prime and Prime orders using Amazon's Buy Shipping Services.
*
* The version of the OpenAPI document: v0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// StandardIdForLabel : The type of standard identifier to print on the label.
/// The type of standard identifier to print on the label.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum StandardIdForLabel {
#[serde(rename = "AmazonOrderId")]
AmazonOrderId,
}
impl std::fmt::Display for StandardIdForLabel {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::AmazonOrderId => write!(f, "AmazonOrderId"),
}
}
}
impl Default for StandardIdForLabel {
fn default() -> StandardIdForLabel {
Self::AmazonOrderId
}
}