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

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(account: nil, use_case: nil) ⇒ AccountLinkCreateParams

Returns a new instance of AccountLinkCreateParams.



174
175
176
177
# File 'lib/stripe/params/v2/core/account_link_create_params.rb', line 174

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.



170
171
172
# File 'lib/stripe/params/v2/core/account_link_create_params.rb', line 170

def 
  @account
end

#use_caseObject

The use case of the AccountLink.



172
173
174
# File 'lib/stripe/params/v2/core/account_link_create_params.rb', line 172

def use_case
  @use_case
end