Class: Stripe::AccountCreateParams::Settings::PaypayPayments::Site
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Settings::PaypayPayments::Site
- Defined in:
- lib/stripe/params/account_create_params.rb
Defined Under Namespace
Classes: Accessible, InDevelopment, Restricted
Instance Attribute Summary collapse
-
#accessible ⇒ Object
Additional information about your business’s website.
-
#in_development ⇒ Object
Additional information about your business’s website.
-
#restricted ⇒ Object
Additional information about your business’s website.
-
#type ⇒ Object
The status of your business’s website.
Instance Method Summary collapse
-
#initialize(accessible: nil, in_development: nil, restricted: nil, type: nil) ⇒ Site
constructor
A new instance of Site.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(accessible: nil, in_development: nil, restricted: nil, type: nil) ⇒ Site
Returns a new instance of Site.
2429 2430 2431 2432 2433 2434 |
# File 'lib/stripe/params/account_create_params.rb', line 2429 def initialize(accessible: nil, in_development: nil, restricted: nil, type: nil) @accessible = accessible @in_development = in_development @restricted = restricted @type = type end |
Instance Attribute Details
#accessible ⇒ Object
Additional information about your business’s website.
2421 2422 2423 |
# File 'lib/stripe/params/account_create_params.rb', line 2421 def accessible @accessible end |
#in_development ⇒ Object
Additional information about your business’s website.
2423 2424 2425 |
# File 'lib/stripe/params/account_create_params.rb', line 2423 def in_development @in_development end |
#restricted ⇒ Object
Additional information about your business’s website.
2425 2426 2427 |
# File 'lib/stripe/params/account_create_params.rb', line 2425 def restricted @restricted end |
#type ⇒ Object
The status of your business’s website.
2427 2428 2429 |
# File 'lib/stripe/params/account_create_params.rb', line 2427 def type @type end |