Struct stripe::Fee [−][src]
pub struct Fee {
pub amount: i64,
pub application: Option<Box<String>>,
pub currency: Currency,
pub description: Option<Box<String>>,
pub type_: FeeType,
}
Fields
amount: i64
Amount of the fee, in cents.
application: Option<Box<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<Box<String>>
An arbitrary string attached to the object.
Often useful for displaying to users.
type_: FeeType
Type of the fee, one of: application_fee
, stripe_fee
or tax
.
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for Fee
impl UnwindSafe for Fee
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more