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.



875
876
877
878
# File 'lib/stripe/services/invoice_service.rb', line 875

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



871
872
873
# File 'lib/stripe/services/invoice_service.rb', line 871

def financial_connections
  @financial_connections
end

#verification_methodObject

Verification method for the intent



873
874
875
# File 'lib/stripe/services/invoice_service.rb', line 873

def verification_method
  @verification_method
end