Class: Stripe::V2::Core::AccountLinkCreateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/v2/core/account_link_create_params.rb

Defined Under Namespace

Classes: UseCase

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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 = 
  @use_case = use_case
end

Instance Attribute Details

#accountObject

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
end

#use_caseObject

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