Class: Stripe::InvoiceService::CreateParams::PaymentSettings::PaymentMethodOptions::UsBankAccount

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/invoice_service.rb

Defined Under Namespace

Classes: FinancialConnections

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(financial_connections: nil, verification_method: nil) ⇒ UsBankAccount

Returns a new instance of UsBankAccount.



1040
1041
1042
1043
# File 'lib/stripe/services/invoice_service.rb', line 1040

def initialize(financial_connections: nil, verification_method: nil)
  @financial_connections = financial_connections
  @verification_method = verification_method
end

Instance Attribute Details

#financial_connectionsObject

Additional fields for Financial Connections Session creation



1036
1037
1038
# File 'lib/stripe/services/invoice_service.rb', line 1036

def financial_connections
  @financial_connections
end

#verification_methodObject

Verification method for the intent



1038
1039
1040
# File 'lib/stripe/services/invoice_service.rb', line 1038

def verification_method
  @verification_method
end