[][src]Struct stripe::ApplicationFeeRefund

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,
}

The resource representing a Stripe "FeeRefund".

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

Fields

id: ApplicationFeeRefundId

Unique identifier for the object.

amount: i64

Amount, in %s.

balance_transaction: Option<Expandable<BalanceTransaction>>

Balance transaction that describes the impact on your account balance.

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.

fee: Expandable<ApplicationFee>

ID of the application fee that was refunded.

metadata: Metadata

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

impl Object for ApplicationFeeRefund[src]

type Id = ApplicationFeeRefundId

The canonical id type for this object.

impl Clone for ApplicationFeeRefund[src]

impl Debug for ApplicationFeeRefund[src]

impl Serialize for ApplicationFeeRefund[src]

impl<'de> Deserialize<'de> for ApplicationFeeRefund[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self