Class: Stripe::V2::Core::AccountLinkCreateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountLinkCreateParams
- Defined in:
- lib/stripe/params/v2/core/account_link_create_params.rb
Defined Under Namespace
Classes: UseCase
Instance Attribute Summary collapse
-
#account ⇒ Object
The ID of the Account to create link for.
-
#use_case ⇒ Object
The use case of the AccountLink.
Instance Method Summary collapse
-
#initialize(account: nil, use_case: nil) ⇒ AccountLinkCreateParams
constructor
A new instance of AccountLinkCreateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(account: nil, use_case: nil) ⇒ AccountLinkCreateParams
Returns a new instance of AccountLinkCreateParams.
94 95 96 97 |
# File 'lib/stripe/params/v2/core/account_link_create_params.rb', line 94 def initialize(account: nil, use_case: nil) @account = account @use_case = use_case end |
Instance Attribute Details
#account ⇒ Object
The ID of the Account to create link for.
90 91 92 |
# File 'lib/stripe/params/v2/core/account_link_create_params.rb', line 90 def account @account end |
#use_case ⇒ Object
The use case of the AccountLink.
92 93 94 |
# File 'lib/stripe/params/v2/core/account_link_create_params.rb', line 92 def use_case @use_case end |