pub struct ConnectCollectionTransfer {
pub amount: i64,
pub currency: Currency,
pub destination: Expandable<Account>,
pub id: ConnectCollectionTransferId,
pub livemode: bool,
}Fields§
§amount: i64Amount transferred, in cents (or local equivalent).
currency: CurrencyThree-letter ISO currency code, in lowercase. Must be a supported currency.
destination: Expandable<Account>ID of the account that funds are being collected for.
id: ConnectCollectionTransferIdUnique identifier for the object.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
Trait Implementations§
Source§impl Clone for ConnectCollectionTransfer
impl Clone for ConnectCollectionTransfer
Source§fn clone(&self) -> ConnectCollectionTransfer
fn clone(&self) -> ConnectCollectionTransfer
Returns a duplicate 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 ConnectCollectionTransfer
impl Debug for ConnectCollectionTransfer
Source§impl FromValueOpt for ConnectCollectionTransfer
impl FromValueOpt for ConnectCollectionTransfer
fn from_value(v: Value) -> Option<Self>
Source§impl Object for ConnectCollectionTransfer
impl Object for ConnectCollectionTransfer
Auto Trait Implementations§
impl Freeze for ConnectCollectionTransfer
impl RefUnwindSafe for ConnectCollectionTransfer
impl Send for ConnectCollectionTransfer
impl Sync for ConnectCollectionTransfer
impl Unpin for ConnectCollectionTransfer
impl UnwindSafe for ConnectCollectionTransfer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more