Struct amazon_sp_vendor_direct_fulfillment_shipping::models::status_update_details::StatusUpdateDetails
source · [−]pub struct StatusUpdateDetails {
pub tracking_number: String,
pub status_code: String,
pub reason_code: String,
pub status_date_time: String,
pub status_location_address: Box<Address>,
pub shipment_schedule: Option<Box<StatusUpdateDetailsShipmentSchedule>>,
}Expand description
StatusUpdateDetails : Details for the shipment status update given by the vendor for the specific package.
Fields
tracking_number: StringThis is required to be provided for every package and should match with the trackingNumber sent for the shipment confirmation.
status_code: StringIndicates the shipment status code of the package that provides transportation information for Amazon tracking systems and ultimately for the final customer.
reason_code: StringProvides a reason code for the status of the package that will provide additional information about the transportation status.
status_date_time: StringThe date and time when the shipment status was updated. This field is expected to be in ISO-8601 date/time format, with UTC time zone or UTC offset. For example, 2020-07-16T23:00:00Z or 2020-07-16T23:00:00+01:00.
status_location_address: Box<Address>shipment_schedule: Option<Box<StatusUpdateDetailsShipmentSchedule>>Implementations
Trait Implementations
sourceimpl Clone for StatusUpdateDetails
impl Clone for StatusUpdateDetails
sourcefn clone(&self) -> StatusUpdateDetails
fn clone(&self) -> StatusUpdateDetails
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 StatusUpdateDetails
impl Debug for StatusUpdateDetails
sourceimpl Default for StatusUpdateDetails
impl Default for StatusUpdateDetails
sourcefn default() -> StatusUpdateDetails
fn default() -> StatusUpdateDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for StatusUpdateDetails
impl<'de> Deserialize<'de> for StatusUpdateDetails
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<StatusUpdateDetails> for StatusUpdateDetails
impl PartialEq<StatusUpdateDetails> for StatusUpdateDetails
sourcefn eq(&self, other: &StatusUpdateDetails) -> bool
fn eq(&self, other: &StatusUpdateDetails) -> bool
sourceimpl Serialize for StatusUpdateDetails
impl Serialize for StatusUpdateDetails
impl StructuralPartialEq for StatusUpdateDetails
Auto Trait Implementations
impl RefUnwindSafe for StatusUpdateDetails
impl Send for StatusUpdateDetails
impl Sync for StatusUpdateDetails
impl Unpin for StatusUpdateDetails
impl UnwindSafe for StatusUpdateDetails
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