Class: Stripe::V2::Core::AccountLinkService::CreateParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/core/account_link_service.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) ⇒ CreateParams

Returns a new instance of CreateParams.



95
96
97
98
# File 'lib/stripe/services/v2/core/account_link_service.rb', line 95

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.



91
92
93
# File 'lib/stripe/services/v2/core/account_link_service.rb', line 91

def 
  @account
end

#use_caseObject

The use case of the AccountLink.



93
94
95
# File 'lib/stripe/services/v2/core/account_link_service.rb', line 93

def use_case
  @use_case
end