Class: Stripe::AccountCreateParams::Controller::StripeDashboard
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Controller::StripeDashboard
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
Whether this account should have access to the full Stripe Dashboard (‘full`), to the Express Dashboard (`express`), or to no Stripe-hosted dashboard (`none`).
Instance Method Summary collapse
-
#initialize(type: nil) ⇒ StripeDashboard
constructor
A new instance of StripeDashboard.
Methods inherited from RequestParams
Constructor Details
#initialize(type: nil) ⇒ StripeDashboard
1323 1324 1325 |
# File 'lib/stripe/params/account_create_params.rb', line 1323 def initialize(type: nil) @type = type end |
Instance Attribute Details
#type ⇒ Object
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`.
1321 1322 1323 |
# File 'lib/stripe/params/account_create_params.rb', line 1321 def type @type end |