Class: Stripe::Account::CreateParams::Controller::Dashboard

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/account.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(type: nil) ⇒ Dashboard

Returns a new instance of Dashboard.



4412
4413
4414
# File 'lib/stripe/resources/account.rb', line 4412

def initialize(type: nil)
  @type = type
end

Instance Attribute Details

#typeObject

Whether this account should have access to the full Stripe Dashboard (‘full`), to the Express Dashboard (`express`), or to no Stripe-hosted dashboard (`none`). Defaults to `full`.



4410
4411
4412
# File 'lib/stripe/resources/account.rb', line 4410

def type
  @type
end