Class: Stripe::Terminal::OnboardingLinkCreateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::OnboardingLinkCreateParams
- Defined in:
- lib/stripe/params/terminal/onboarding_link_create_params.rb
Defined Under Namespace
Classes: LinkOptions
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#link_options ⇒ Object
Specific fields needed to generate the desired link type.
-
#link_type ⇒ Object
The type of link being generated.
-
#on_behalf_of ⇒ Object
Stripe account ID to generate the link for.
Instance Method Summary collapse
-
#initialize(expand: nil, link_options: nil, link_type: nil, on_behalf_of: nil) ⇒ OnboardingLinkCreateParams
constructor
A new instance of OnboardingLinkCreateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, link_options: nil, link_type: nil, on_behalf_of: nil) ⇒ OnboardingLinkCreateParams
Returns a new instance of OnboardingLinkCreateParams.
35 36 37 38 39 40 |
# File 'lib/stripe/params/terminal/onboarding_link_create_params.rb', line 35 def initialize(expand: nil, link_options: nil, link_type: nil, on_behalf_of: nil) = = @link_type = link_type @on_behalf_of = on_behalf_of end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
27 28 29 |
# File 'lib/stripe/params/terminal/onboarding_link_create_params.rb', line 27 def end |
#link_options ⇒ Object
Specific fields needed to generate the desired link type.
29 30 31 |
# File 'lib/stripe/params/terminal/onboarding_link_create_params.rb', line 29 def end |
#link_type ⇒ Object
The type of link being generated.
31 32 33 |
# File 'lib/stripe/params/terminal/onboarding_link_create_params.rb', line 31 def link_type @link_type end |
#on_behalf_of ⇒ Object
Stripe account ID to generate the link for.
33 34 35 |
# File 'lib/stripe/params/terminal/onboarding_link_create_params.rb', line 33 def on_behalf_of @on_behalf_of end |