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.



984
985
986
987
# File 'lib/stripe/services/invoice_service.rb', line 984

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



980
981
982
# File 'lib/stripe/services/invoice_service.rb', line 980

def financial_connections
  @financial_connections
end

#verification_methodObject

Verification method for the intent



982
983
984
# File 'lib/stripe/services/invoice_service.rb', line 982

def verification_method
  @verification_method
end