pub struct FeeComponent {
pub fee_type: Option<String>,
pub fee_amount: Option<Box<Currency>>,
}Expand description
FeeComponent : A fee associated with the event.
Fields§
§fee_type: Option<String>The type of fee. For more information about Selling on Amazon fees, see Selling on Amazon Fee Schedule on Seller Central. For more information about Fulfillment by Amazon fees, see FBA features, services and fees on Seller Central.
fee_amount: Option<Box<Currency>>Implementations§
Source§impl FeeComponent
impl FeeComponent
Sourcepub fn new() -> FeeComponent
pub fn new() -> FeeComponent
A fee associated with the event.
Trait Implementations§
Source§impl Clone for FeeComponent
impl Clone for FeeComponent
Source§fn clone(&self) -> FeeComponent
fn clone(&self) -> FeeComponent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FeeComponent
impl Debug for FeeComponent
Source§impl Default for FeeComponent
impl Default for FeeComponent
Source§fn default() -> FeeComponent
fn default() -> FeeComponent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeeComponent
impl<'de> Deserialize<'de> for FeeComponent
Source§fn 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
Source§impl PartialEq for FeeComponent
impl PartialEq for FeeComponent
Source§impl Serialize for FeeComponent
impl Serialize for FeeComponent
impl StructuralPartialEq for FeeComponent
Auto Trait Implementations§
impl Freeze for FeeComponent
impl RefUnwindSafe for FeeComponent
impl Send for FeeComponent
impl Sync for FeeComponent
impl Unpin for FeeComponent
impl UnwindSafe for FeeComponent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more