pub struct ApplicationFee {
Show 13 fields pub id: ApplicationFeeId, pub account: Expandable<Account>, pub amount: i64, pub amount_refunded: i64, pub application: Expandable<Application>, pub balance_transaction: Option<Expandable<BalanceTransaction>>, pub charge: Expandable<Charge>, pub created: Timestamp, pub currency: Currency, pub livemode: bool, pub originating_transaction: Option<Expandable<Charge>>, pub refunded: bool, pub refunds: List<ApplicationFeeRefund>,
}
Expand description

The resource representing a Stripe “PlatformFee”.

For more details see https://stripe.com/docs/api/application_fees/object

Fields

id: ApplicationFeeId

Unique identifier for the object.

account: Expandable<Account>

ID of the Stripe account this fee was taken from.

amount: i64

Amount earned, in %s.

amount_refunded: i64

Amount in %s refunded (can be less than the amount attribute on the fee if a partial refund was issued).

application: Expandable<Application>

ID of the Connect application that earned the fee.

balance_transaction: Option<Expandable<BalanceTransaction>>

Balance transaction that describes the impact of this collected application fee on your account balance (not including refunds).

charge: Expandable<Charge>

ID of the charge that the application fee was taken from.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

originating_transaction: Option<Expandable<Charge>>

ID of the corresponding charge on the platform account, if this fee was the result of a charge using the destination parameter.

refunded: bool

Whether the fee has been fully refunded.

If the fee is only partially refunded, this attribute will still be false.

refunds: List<ApplicationFeeRefund>

A list of refunds that have been applied to the fee.

Implementations

Returns a list of application fees you’ve previously collected.

The application fees are returned in sorted order, with the most recent fees appearing first.

Retrieves the details of an application fee that your account has collected.

The same information is returned when refunding the application fee.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The canonical id type for this object.

The id of the object.

The object’s type, typically represented in wire format as the object property.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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