1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
* Selling Partner API for Merchant Fulfillment
*
* The Selling Partner API for Merchant Fulfillment helps you build applications that let sellers 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
*/
/// TermsAndConditionsNotAcceptedCarrier : A carrier whose terms and conditions have not been accepted by the seller.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct TermsAndConditionsNotAcceptedCarrier {
/// The name of the carrier.
#[serde(default, rename = "CarrierName")]
pub carrier_name: String,
}
impl TermsAndConditionsNotAcceptedCarrier {
/// A carrier whose terms and conditions have not been accepted by the seller.
pub fn new(carrier_name: String) -> TermsAndConditionsNotAcceptedCarrier {
TermsAndConditionsNotAcceptedCarrier {
carrier_name,
}
}
}