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