pub struct ApplicationFee {Show 14 fields
pub account: Value,
pub amount: i64,
pub amount_refunded: i64,
pub application: Value,
pub balance_transaction: Option<Value>,
pub charge: Value,
pub created: i64,
pub currency: String,
pub id: String,
pub livemode: bool,
pub object: String,
pub originating_transaction: Option<Value>,
pub refunded: bool,
pub refunds: FeeRefundList,
}Expand description
Fields§
§account: ValueID of the Stripe account this fee was taken from.
amount: i64Amount earned, in cents (or local equivalent).
amount_refunded: i64Amount in cents (or local equivalent) refunded (can be less than the amount attribute on the fee if a partial refund was issued)
application: ValueID of the Connect application that earned the fee.
balance_transaction: Option<Value>Balance transaction that describes the impact of this collected application fee on your account balance (not including refunds).
charge: ValueID of the charge that the application fee was taken from.
created: i64Time at which the object was created. Measured in seconds since the Unix epoch.
currency: StringThree-letter ISO currency code, in lowercase. Must be a supported currency.
id: StringUnique identifier for the object.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
object: StringString representing the object’s type. Objects of the same type share the same value.
originating_transaction: Option<Value>ID of the corresponding charge on the platform account, if this fee was the result of a charge using the destination parameter.
refunded: boolWhether the fee has been fully refunded. If the fee is only partially refunded, this attribute will still be false.
refunds: FeeRefundListA list of refunds that have been applied to the fee.
Trait Implementations§
Source§impl Clone for ApplicationFee
impl Clone for ApplicationFee
Source§fn clone(&self) -> ApplicationFee
fn clone(&self) -> ApplicationFee
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more