[][src]Struct stripe::ConnectCollectionTransfer

pub struct ConnectCollectionTransfer {
    pub amount: i64,
    pub currency: Currency,
    pub destination: Expandable<Account>,
    pub livemode: bool,
}

The resource representing a Stripe "ConnectCollectionTransfer".

Fields

amount: i64

Amount transferred, in %s.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

destination: Expandable<Account>

ID of the account that funds are being collected for.

livemode: bool

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

Trait Implementations

impl Clone for ConnectCollectionTransfer[src]

impl Debug for ConnectCollectionTransfer[src]

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

impl Object for ConnectCollectionTransfer[src]

type Id = ()

The canonical id type for this object.

impl Serialize for ConnectCollectionTransfer[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.