pub struct ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections {
pub filters: Option<ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters>,
pub permissions: Option<Vec<ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions>>,
pub prefetch: Option<Vec<ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPrefetch>>,
pub return_url: Option<String>,
}
Expand description
Additional fields for Financial Connections Session creation
Fields§
§filters: Option<ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters>
Provide filters for the linked accounts that the customer can select for the payment method.
permissions: Option<Vec<ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions>>
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<ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPrefetch>>
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 ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Clone for ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
Source§fn clone(
&self,
) -> ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
fn clone( &self, ) -> ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
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 ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl RefUnwindSafe for ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Send for ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Sync for ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl Unpin for ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
impl UnwindSafe for ConfirmPaymentIntentPaymentMethodOptionsUsBankAccountFinancialConnections
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