Struct amazon_sp_product_fees::models::fee_detail::FeeDetail
source · [−]pub struct FeeDetail {
pub fee_type: String,
pub fee_amount: Box<MoneyType>,
pub fee_promotion: Option<Box<MoneyType>>,
pub tax_amount: Option<Box<MoneyType>>,
pub final_fee: Box<MoneyType>,
pub included_fee_detail_list: Option<Vec<IncludedFeeDetail>>,
}Expand description
FeeDetail : The type of fee, fee amount, and other details.
Fields
fee_type: StringThe type of fee charged to a seller.
fee_amount: Box<MoneyType>fee_promotion: Option<Box<MoneyType>>tax_amount: Option<Box<MoneyType>>final_fee: Box<MoneyType>included_fee_detail_list: Option<Vec<IncludedFeeDetail>>A list of other fees that contribute to a given fee.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for FeeDetail
impl<'de> Deserialize<'de> for FeeDetail
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
impl StructuralPartialEq for FeeDetail
Auto Trait Implementations
impl RefUnwindSafe for FeeDetail
impl Send for FeeDetail
impl Sync for FeeDetail
impl Unpin for FeeDetail
impl UnwindSafe for FeeDetail
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