Class: Stripe::AccountService::UpdateParams::Capabilities::CardIssuing
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountService::UpdateParams::Capabilities::CardIssuing
- Defined in:
- lib/stripe/services/account_service.rb
Instance Attribute Summary collapse
-
#requested ⇒ Object
Passing true requests the capability for the account, if it is not already requested.
Instance Method Summary collapse
-
#initialize(requested: nil) ⇒ CardIssuing
constructor
A new instance of CardIssuing.
Methods inherited from RequestParams
Constructor Details
#initialize(requested: nil) ⇒ CardIssuing
Returns a new instance of CardIssuing.
285 286 287 |
# File 'lib/stripe/services/account_service.rb', line 285 def initialize(requested: nil) @requested = requested end |
Instance Attribute Details
#requested ⇒ Object
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the ‘requirements` arrays.
283 284 285 |
# File 'lib/stripe/services/account_service.rb', line 283 def requested @requested end |