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