Class: Stripe::AccountUpdateParams::Settings::PaypayPayments::Site
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountUpdateParams::Settings::PaypayPayments::Site
- Defined in:
- lib/stripe/params/account_update_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.
2290 2291 2292 2293 2294 2295 |
# File 'lib/stripe/params/account_update_params.rb', line 2290 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.
2282 2283 2284 |
# File 'lib/stripe/params/account_update_params.rb', line 2282 def accessible @accessible end |
#in_development ⇒ Object
Additional information about your business’s website.
2284 2285 2286 |
# File 'lib/stripe/params/account_update_params.rb', line 2284 def in_development @in_development end |
#restricted ⇒ Object
Additional information about your business’s website.
2286 2287 2288 |
# File 'lib/stripe/params/account_update_params.rb', line 2286 def restricted @restricted end |
#type ⇒ Object
The status of your business’s website.
2288 2289 2290 |
# File 'lib/stripe/params/account_update_params.rb', line 2288 def type @type end |