pub struct QuotesResourceTransferData {
pub amount: Option<i64>,
pub amount_percent: Option<f64>,
pub destination: Expandable<Account>,
}
Fields§
§amount: Option<i64>
The amount in cents (or local equivalent) that will be transferred to the destination account when the invoice is paid. By default, the entire amount is transferred to the destination.
amount_percent: Option<f64>
A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the destination account. By default, the entire amount will be transferred to the destination.
destination: Expandable<Account>
The account where funds from the payment will be transferred to upon payment success.
Trait Implementations§
Source§impl Clone for QuotesResourceTransferData
impl Clone for QuotesResourceTransferData
Source§fn clone(&self) -> QuotesResourceTransferData
fn clone(&self) -> QuotesResourceTransferData
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 QuotesResourceTransferData
impl Debug for QuotesResourceTransferData
Source§impl FromValueOpt for QuotesResourceTransferData
impl FromValueOpt for QuotesResourceTransferData
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for QuotesResourceTransferData
impl RefUnwindSafe for QuotesResourceTransferData
impl Send for QuotesResourceTransferData
impl Sync for QuotesResourceTransferData
impl Unpin for QuotesResourceTransferData
impl UnwindSafe for QuotesResourceTransferData
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