pub struct CapturePaymentIntentTransferData {
pub amount: Option<i64>,
}
Expand description
The parameters that you can use to automatically create a transfer after the payment is captured. Learn more about the use case for connected accounts.
Fields§
§amount: Option<i64>
The amount that will be transferred automatically when a charge succeeds.
Implementations§
Trait Implementations§
Source§impl Clone for CapturePaymentIntentTransferData
impl Clone for CapturePaymentIntentTransferData
Source§fn clone(&self) -> CapturePaymentIntentTransferData
fn clone(&self) -> CapturePaymentIntentTransferData
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 moreimpl Copy for CapturePaymentIntentTransferData
Auto Trait Implementations§
impl Freeze for CapturePaymentIntentTransferData
impl RefUnwindSafe for CapturePaymentIntentTransferData
impl Send for CapturePaymentIntentTransferData
impl Sync for CapturePaymentIntentTransferData
impl Unpin for CapturePaymentIntentTransferData
impl UnwindSafe for CapturePaymentIntentTransferData
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