pub struct TrialShipmentEvent {
pub amazon_order_id: Option<String>,
pub financial_event_group_id: Option<String>,
pub posted_date: Option<String>,
pub SKU: Option<String>,
pub fee_list: Option<Vec<FeeComponent>>,
}Expand description
TrialShipmentEvent : An event related to a trial shipment.
Fields
amazon_order_id: Option<String>An Amazon-defined identifier for an order.
financial_event_group_id: Option<String>The identifier of the financial event group.
posted_date: Option<String>SKU: Option<String>The seller SKU of the item. The seller SKU is qualified by the seller’s seller ID, which is included with every call to the Selling Partner API.
fee_list: Option<Vec<FeeComponent>>A list of fee component information.
Implementations
sourceimpl TrialShipmentEvent
impl TrialShipmentEvent
sourcepub fn new() -> TrialShipmentEvent
pub fn new() -> TrialShipmentEvent
An event related to a trial shipment.
Trait Implementations
sourceimpl Clone for TrialShipmentEvent
impl Clone for TrialShipmentEvent
sourcefn clone(&self) -> TrialShipmentEvent
fn clone(&self) -> TrialShipmentEvent
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 TrialShipmentEvent
impl Debug for TrialShipmentEvent
sourceimpl Default for TrialShipmentEvent
impl Default for TrialShipmentEvent
sourcefn default() -> TrialShipmentEvent
fn default() -> TrialShipmentEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for TrialShipmentEvent
impl<'de> Deserialize<'de> for TrialShipmentEvent
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<TrialShipmentEvent> for TrialShipmentEvent
impl PartialEq<TrialShipmentEvent> for TrialShipmentEvent
sourcefn eq(&self, other: &TrialShipmentEvent) -> bool
fn eq(&self, other: &TrialShipmentEvent) -> bool
sourceimpl Serialize for TrialShipmentEvent
impl Serialize for TrialShipmentEvent
impl StructuralPartialEq for TrialShipmentEvent
Auto Trait Implementations
impl RefUnwindSafe for TrialShipmentEvent
impl Send for TrialShipmentEvent
impl Sync for TrialShipmentEvent
impl Unpin for TrialShipmentEvent
impl UnwindSafe for TrialShipmentEvent
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