pub struct PaymentLinksResourceTransferData {
pub amount: Option<i64>,
pub destination: Expandable<Account>,
}Fields§
§amount: Option<i64>The amount in cents (or local equivalent) that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
destination: Expandable<Account>The connected account receiving the transfer.
Trait Implementations§
Source§impl Clone for PaymentLinksResourceTransferData
impl Clone for PaymentLinksResourceTransferData
Source§fn clone(&self) -> PaymentLinksResourceTransferData
fn clone(&self) -> PaymentLinksResourceTransferData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl FromValueOpt for PaymentLinksResourceTransferData
impl FromValueOpt for PaymentLinksResourceTransferData
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentLinksResourceTransferData
impl RefUnwindSafe for PaymentLinksResourceTransferData
impl Send for PaymentLinksResourceTransferData
impl Sync for PaymentLinksResourceTransferData
impl Unpin for PaymentLinksResourceTransferData
impl UnsafeUnpin for PaymentLinksResourceTransferData
impl UnwindSafe for PaymentLinksResourceTransferData
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