pub struct ApplicationFeeRefund {
pub amount: i64,
pub balance_transaction: Option<Expandable<BalanceTransaction>>,
pub created: Timestamp,
pub currency: Currency,
pub fee: Expandable<ApplicationFee>,
pub id: ApplicationFeeRefundId,
pub metadata: Option<HashMap<String, String>>,
}Expand description
Application Fee Refund objects allow you to refund an application fee that
has previously been created but not yet refunded. Funds will be refunded to
the Stripe account from which the fee was originally collected.
Related guide: Refunding application fees.
For more details see <https://stripe.com/docs/api/fee_refunds/object>.
Fields§
§amount: i64Amount, in cents (or local equivalent).
balance_transaction: Option<Expandable<BalanceTransaction>>Balance transaction that describes the impact on your account balance.
created: TimestampTime at which the object was created. Measured in seconds since the Unix epoch.
currency: CurrencyThree-letter ISO currency code, in lowercase. Must be a supported currency.
fee: Expandable<ApplicationFee>ID of the application fee that was refunded.
id: ApplicationFeeRefundIdUnique identifier for the object.
metadata: Option<HashMap<String, String>>Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
Trait Implementations§
Source§impl Clone for ApplicationFeeRefund
impl Clone for ApplicationFeeRefund
Source§fn clone(&self) -> ApplicationFeeRefund
fn clone(&self) -> ApplicationFeeRefund
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more