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