pub struct Fee {
pub amount: i64,
pub application: Option<String>,
pub currency: Currency,
pub description: Option<String>,
pub type_: String,
}
Fields§
§amount: i64
Amount of the fee, in cents.
application: Option<String>
ID of the Connect application that earned the fee.
currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
description: Option<String>
An arbitrary string attached to the object. Often useful for displaying to users.
type_: String
Type of the fee, one of: application_fee
, payment_method_passthrough_fee
, stripe_fee
or tax
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fee
impl RefUnwindSafe for Fee
impl Send for Fee
impl Sync for Fee
impl Unpin for Fee
impl UnwindSafe for Fee
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