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>,
}
Expand description
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 Default for SourceTransactionGbpCreditTransferData
impl Default for SourceTransactionGbpCreditTransferData
Source§fn default() -> SourceTransactionGbpCreditTransferData
fn default() -> SourceTransactionGbpCreditTransferData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceTransactionGbpCreditTransferData
impl<'de> Deserialize<'de> for SourceTransactionGbpCreditTransferData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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