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 (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 SourceTransactionGbpCreditTransferData
impl FromValueOpt for SourceTransactionGbpCreditTransferData
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SourceTransactionGbpCreditTransferData
impl PartialEq for SourceTransactionGbpCreditTransferData
Source§fn eq(&self, other: &SourceTransactionGbpCreditTransferData) -> bool
fn eq(&self, other: &SourceTransactionGbpCreditTransferData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SourceTransactionGbpCreditTransferData
impl StructuralPartialEq for SourceTransactionGbpCreditTransferData
Auto Trait Implementations§
impl Freeze for SourceTransactionGbpCreditTransferData
impl RefUnwindSafe for SourceTransactionGbpCreditTransferData
impl Send for SourceTransactionGbpCreditTransferData
impl Sync for SourceTransactionGbpCreditTransferData
impl Unpin for SourceTransactionGbpCreditTransferData
impl UnsafeUnpin 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