pub struct ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections {
pub filters: Option<ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters>,
pub permissions: Option<Vec<ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions>>,
pub prefetch: Option<Vec<ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPrefetch>>,
pub return_url: Option<String>,
}
Expand description
Additional fields for Financial Connections Session creation
Fields§
§filters: Option<ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters>
Provide filters for the linked accounts that the customer can select for the payment method.
permissions: Option<Vec<ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions>>
The list of permissions to request.
If this parameter is passed, the payment_method
permission must be included.
Valid permissions include: balances
, ownership
, payment_method
, and transactions
.
prefetch: Option<Vec<ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPrefetch>>
List of data features that you would like to retrieve upon account creation.
return_url: Option<String>
For webview integrations only. Upon completing OAuth login in the native browser, the user will be redirected to this URL to return to your app.
Implementations§
Trait Implementations§
Source§impl Clone for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Clone for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
Source§fn clone(
&self,
) -> ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
fn clone( &self, ) -> ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
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 ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl RefUnwindSafe for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Send for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Sync for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Unpin for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl UnwindSafe for ConfirmSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections
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