Struct amazon_sp_fulfillment_inbound::models::inbound_shipment_info::InboundShipmentInfo
source · [−]pub struct InboundShipmentInfo {
pub shipment_id: Option<String>,
pub shipment_name: Option<String>,
pub ship_from_address: Box<Address>,
pub destination_fulfillment_center_id: Option<String>,
pub shipment_status: Option<ShipmentStatus>,
pub label_prep_type: Option<LabelPrepType>,
pub are_cases_required: bool,
pub confirmed_need_by_date: Option<String>,
pub box_contents_source: Option<BoxContentsSource>,
pub estimated_box_contents_fee: Option<Box<BoxContentsFeeDetails>>,
}Expand description
InboundShipmentInfo : Information about the seller’s inbound shipments. Returned by the listInboundShipments operation.
Fields
shipment_id: Option<String>The shipment identifier submitted in the request.
shipment_name: Option<String>The name for the inbound shipment.
ship_from_address: Box<Address>destination_fulfillment_center_id: Option<String>An Amazon fulfillment center identifier created by Amazon.
shipment_status: Option<ShipmentStatus>label_prep_type: Option<LabelPrepType>are_cases_required: boolIndicates whether or not an inbound shipment contains case-packed boxes. When AreCasesRequired = true for an inbound shipment, all items in the inbound shipment must be case packed.
confirmed_need_by_date: Option<String>box_contents_source: Option<BoxContentsSource>estimated_box_contents_fee: Option<Box<BoxContentsFeeDetails>>Implementations
sourceimpl InboundShipmentInfo
impl InboundShipmentInfo
sourcepub fn new(
ship_from_address: Address,
are_cases_required: bool
) -> InboundShipmentInfo
pub fn new(
ship_from_address: Address,
are_cases_required: bool
) -> InboundShipmentInfo
Information about the seller’s inbound shipments. Returned by the listInboundShipments operation.
Trait Implementations
sourceimpl Clone for InboundShipmentInfo
impl Clone for InboundShipmentInfo
sourcefn clone(&self) -> InboundShipmentInfo
fn clone(&self) -> InboundShipmentInfo
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 InboundShipmentInfo
impl Debug for InboundShipmentInfo
sourceimpl Default for InboundShipmentInfo
impl Default for InboundShipmentInfo
sourcefn default() -> InboundShipmentInfo
fn default() -> InboundShipmentInfo
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InboundShipmentInfo
impl<'de> Deserialize<'de> for InboundShipmentInfo
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<InboundShipmentInfo> for InboundShipmentInfo
impl PartialEq<InboundShipmentInfo> for InboundShipmentInfo
sourcefn eq(&self, other: &InboundShipmentInfo) -> bool
fn eq(&self, other: &InboundShipmentInfo) -> bool
sourceimpl Serialize for InboundShipmentInfo
impl Serialize for InboundShipmentInfo
impl StructuralPartialEq for InboundShipmentInfo
Auto Trait Implementations
impl RefUnwindSafe for InboundShipmentInfo
impl Send for InboundShipmentInfo
impl Sync for InboundShipmentInfo
impl Unpin for InboundShipmentInfo
impl UnwindSafe for InboundShipmentInfo
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