Struct stripe::generated::connect::fee_refund::ApplicationFeeRefund
source · pub struct ApplicationFeeRefund {
pub id: ApplicationFeeRefundId,
pub amount: i64,
pub balance_transaction: Option<Expandable<BalanceTransaction>>,
pub created: Timestamp,
pub currency: Currency,
pub fee: Expandable<ApplicationFee>,
pub metadata: Metadata,
}Expand description
The resource representing a Stripe “FeeRefund”.
For more details see https://stripe.com/docs/api/fee_refunds/object
Fields§
§id: ApplicationFeeRefundIdUnique identifier for the object.
amount: i64Amount, in %s.
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.
metadata: MetadataSet 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ApplicationFeeRefund
impl Debug for ApplicationFeeRefund
source§impl Default for ApplicationFeeRefund
impl Default for ApplicationFeeRefund
source§fn default() -> ApplicationFeeRefund
fn default() -> ApplicationFeeRefund
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ApplicationFeeRefund
impl<'de> Deserialize<'de> for ApplicationFeeRefund
source§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