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: boolIf the object exists in live mode, the value is true.
If the object exists in test mode, the value is false.
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 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 UnsafeUnpin 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