pub struct SourceTransactionGbpCreditTransferData {
pub fingerprint: Option<String>,
pub funding_method: Option<String>,
pub last4: Option<String>,
pub reference: Option<String>,
pub sender_account_number: Option<String>,
pub sender_name: Option<String>,
pub sender_sort_code: Option<String>,
}
Fields§
§fingerprint: Option<String>
Bank account fingerprint associated with the Stripe owned bank account receiving the transfer.
funding_method: Option<String>
The credit transfer rails the sender used to push this transfer. The possible rails are: Faster Payments, BACS, CHAPS, and wire transfers. Currently only Faster Payments is supported.
last4: Option<String>
Last 4 digits of sender account number associated with the transfer.
reference: Option<String>
Sender entered arbitrary information about the transfer.
sender_account_number: Option<String>
Sender account number associated with the transfer.
sender_name: Option<String>
Sender name associated with the transfer.
sender_sort_code: Option<String>
Sender sort code associated with the transfer.
Trait Implementations§
Source§impl Clone for SourceTransactionGbpCreditTransferData
impl Clone for SourceTransactionGbpCreditTransferData
Source§fn clone(&self) -> SourceTransactionGbpCreditTransferData
fn clone(&self) -> SourceTransactionGbpCreditTransferData
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 FromValueOpt for SourceTransactionGbpCreditTransferData
impl FromValueOpt for SourceTransactionGbpCreditTransferData
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for SourceTransactionGbpCreditTransferData
impl RefUnwindSafe for SourceTransactionGbpCreditTransferData
impl Send for SourceTransactionGbpCreditTransferData
impl Sync for SourceTransactionGbpCreditTransferData
impl Unpin for SourceTransactionGbpCreditTransferData
impl UnwindSafe for SourceTransactionGbpCreditTransferData
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