Class: Stripe::V2::Core::AccountUpdateParams::Configuration::Recipient
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Configuration::Recipient
- Defined in:
- lib/stripe/params/v2/core/account_update_params.rb
Defined Under Namespace
Classes: Capabilities
Instance Attribute Summary collapse
-
#applied ⇒ Object
Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
-
#capabilities ⇒ Object
Capabilities to request on the Recipient Configuration.
Instance Method Summary collapse
-
#initialize(applied: nil, capabilities: nil) ⇒ Recipient
constructor
A new instance of Recipient.
Methods inherited from RequestParams
Constructor Details
#initialize(applied: nil, capabilities: nil) ⇒ Recipient
Returns a new instance of Recipient.
1011 1012 1013 1014 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1011 def initialize(applied: nil, capabilities: nil) @applied = applied @capabilities = capabilities end |
Instance Attribute Details
#applied ⇒ Object
Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
1007 1008 1009 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1007 def applied @applied end |
#capabilities ⇒ Object
Capabilities to request on the Recipient Configuration.
1009 1010 1011 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1009 def capabilities @capabilities end |