Struct amazon_sp_fulfillment_inbound::models::partnered_ltl_data_output::PartneredLtlDataOutput
source · [−]pub struct PartneredLtlDataOutput {Show 15 fields
pub contact: Box<Contact>,
pub box_count: i64,
pub seller_freight_class: Option<SellerFreightClass>,
pub freight_ready_date: String,
pub pallet_list: Vec<Pallet>,
pub total_weight: Box<Weight>,
pub seller_declared_value: Option<Box<Amount>>,
pub amazon_calculated_value: Option<Box<Amount>>,
pub preview_pickup_date: String,
pub preview_delivery_date: String,
pub preview_freight_class: SellerFreightClass,
pub amazon_reference_id: String,
pub is_bill_of_lading_available: bool,
pub partnered_estimate: Option<Box<PartneredEstimate>>,
pub carrier_name: String,
}Expand description
PartneredLtlDataOutput : Information returned by Amazon about a Less Than Truckload/Full Truckload (LTL/FTL) shipment by an Amazon-partnered carrier.
Fields
contact: Box<Contact>box_count: i64seller_freight_class: Option<SellerFreightClass>freight_ready_date: Stringpallet_list: Vec<Pallet>A list of pallet information.
total_weight: Box<Weight>seller_declared_value: Option<Box<Amount>>amazon_calculated_value: Option<Box<Amount>>preview_pickup_date: Stringpreview_delivery_date: Stringpreview_freight_class: SellerFreightClassamazon_reference_id: StringA unique identifier created by Amazon that identifies this Amazon-partnered, Less Than Truckload/Full Truckload (LTL/FTL) shipment.
is_bill_of_lading_available: boolIndicates whether the bill of lading for the shipment is available.
partnered_estimate: Option<Box<PartneredEstimate>>carrier_name: StringThe carrier for the inbound shipment.
Implementations
sourceimpl PartneredLtlDataOutput
impl PartneredLtlDataOutput
sourcepub fn new(
contact: Contact,
box_count: i64,
freight_ready_date: String,
pallet_list: Vec<Pallet>,
total_weight: Weight,
preview_pickup_date: String,
preview_delivery_date: String,
preview_freight_class: SellerFreightClass,
amazon_reference_id: String,
is_bill_of_lading_available: bool,
carrier_name: String
) -> PartneredLtlDataOutput
pub fn new(
contact: Contact,
box_count: i64,
freight_ready_date: String,
pallet_list: Vec<Pallet>,
total_weight: Weight,
preview_pickup_date: String,
preview_delivery_date: String,
preview_freight_class: SellerFreightClass,
amazon_reference_id: String,
is_bill_of_lading_available: bool,
carrier_name: String
) -> PartneredLtlDataOutput
Information returned by Amazon about a Less Than Truckload/Full Truckload (LTL/FTL) shipment by an Amazon-partnered carrier.
Trait Implementations
sourceimpl Clone for PartneredLtlDataOutput
impl Clone for PartneredLtlDataOutput
sourcefn clone(&self) -> PartneredLtlDataOutput
fn clone(&self) -> PartneredLtlDataOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PartneredLtlDataOutput
impl Debug for PartneredLtlDataOutput
sourceimpl Default for PartneredLtlDataOutput
impl Default for PartneredLtlDataOutput
sourcefn default() -> PartneredLtlDataOutput
fn default() -> PartneredLtlDataOutput
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PartneredLtlDataOutput
impl<'de> Deserialize<'de> for PartneredLtlDataOutput
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<PartneredLtlDataOutput> for PartneredLtlDataOutput
impl PartialEq<PartneredLtlDataOutput> for PartneredLtlDataOutput
sourcefn eq(&self, other: &PartneredLtlDataOutput) -> bool
fn eq(&self, other: &PartneredLtlDataOutput) -> bool
sourceimpl Serialize for PartneredLtlDataOutput
impl Serialize for PartneredLtlDataOutput
impl StructuralPartialEq for PartneredLtlDataOutput
Auto Trait Implementations
impl RefUnwindSafe for PartneredLtlDataOutput
impl Send for PartneredLtlDataOutput
impl Sync for PartneredLtlDataOutput
impl Unpin for PartneredLtlDataOutput
impl UnwindSafe for PartneredLtlDataOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more