Class: Stripe::AccountCreateParams::Controller::Dashboard

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(type: nil) ⇒ Dashboard

Returns a new instance of Dashboard.



1571
1572
1573
# File 'lib/stripe/params/account_create_params.rb', line 1571

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`.



1569
1570
1571
# File 'lib/stripe/params/account_create_params.rb', line 1569

def type
  @type
end