pub struct CreateFundingInstructionsCustomerBankTransfer {
pub eu_bank_transfer: Option<CreateFundingInstructionsCustomerBankTransferEuBankTransfer>,
pub requested_address_types: Option<Vec<CreateFundingInstructionsCustomerBankTransferRequestedAddressTypes>>,
pub type_: CreateFundingInstructionsCustomerBankTransferType,
}
Expand description
Additional parameters for bank_transfer
funding types
Fields§
§eu_bank_transfer: Option<CreateFundingInstructionsCustomerBankTransferEuBankTransfer>
Configuration for eu_bank_transfer funding type.
requested_address_types: Option<Vec<CreateFundingInstructionsCustomerBankTransferRequestedAddressTypes>>
List of address types that should be returned in the financial_addresses response. If not specified, all valid types will be returned.
Permitted values include: sort_code
, zengin
, iban
, or spei
.
type_: CreateFundingInstructionsCustomerBankTransferType
The type of the bank_transfer
Implementations§
Source§impl CreateFundingInstructionsCustomerBankTransfer
impl CreateFundingInstructionsCustomerBankTransfer
pub fn new( type_: impl Into<CreateFundingInstructionsCustomerBankTransferType>, ) -> Self
Trait Implementations§
Source§impl Clone for CreateFundingInstructionsCustomerBankTransfer
impl Clone for CreateFundingInstructionsCustomerBankTransfer
Source§fn clone(&self) -> CreateFundingInstructionsCustomerBankTransfer
fn clone(&self) -> CreateFundingInstructionsCustomerBankTransfer
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 moreAuto Trait Implementations§
impl Freeze for CreateFundingInstructionsCustomerBankTransfer
impl RefUnwindSafe for CreateFundingInstructionsCustomerBankTransfer
impl Send for CreateFundingInstructionsCustomerBankTransfer
impl Sync for CreateFundingInstructionsCustomerBankTransfer
impl Unpin for CreateFundingInstructionsCustomerBankTransfer
impl UnwindSafe for CreateFundingInstructionsCustomerBankTransfer
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