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.



993
994
995
996
# File 'lib/stripe/services/invoice_service.rb', line 993

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



989
990
991
# File 'lib/stripe/services/invoice_service.rb', line 989

def financial_connections
  @financial_connections
end

#verification_methodObject

Verification method for the intent



991
992
993
# File 'lib/stripe/services/invoice_service.rb', line 991

def verification_method
  @verification_method
end