Struct stripe::SourceReceiverFlow[][src]

pub struct SourceReceiverFlow {
    pub address: Option<String>,
    pub amount_charged: i64,
    pub amount_received: i64,
    pub amount_returned: i64,
    pub refund_attributes_method: String,
    pub refund_attributes_status: String,
}

Fields

address: Option<String>

The address of the receiver source.

This is the value that should be communicated to the customer to send their funds to.

amount_charged: i64

The total amount that was moved to your balance.

This is almost always equal to the amount charged. In rare cases when customers deposit excess funds and we are unable to refund those, those funds get moved to your balance and show up in amount_charged as well. The amount charged is expressed in the source's currency.

amount_received: i64

The total amount received by the receiver source.

amount_received = amount_returned + amount_charged should be true for consumed sources unless customers deposit excess funds. The amount received is expressed in the source's currency.

amount_returned: i64

The total amount that was returned to the customer.

The amount returned is expressed in the source's currency.

refund_attributes_method: String

Type of refund attribute method, one of email, manual, or none.

refund_attributes_status: String

Type of refund attribute status, one of missing, requested, or available.

Trait Implementations

impl Clone for SourceReceiverFlow[src]

impl Debug for SourceReceiverFlow[src]

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

impl Serialize for SourceReceiverFlow[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]