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
Constructor Details
#initialize(accessible: nil, in_development: nil, restricted: nil, type: nil) ⇒ Site
Returns a new instance of Site.
2232 2233 2234 2235 2236 2237 |
# File 'lib/stripe/params/account_update_params.rb', line 2232 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.
2224 2225 2226 |
# File 'lib/stripe/params/account_update_params.rb', line 2224 def accessible @accessible end |
#in_development ⇒ Object
Additional information about your business’s website.
2226 2227 2228 |
# File 'lib/stripe/params/account_update_params.rb', line 2226 def in_development @in_development end |
#restricted ⇒ Object
Additional information about your business’s website.
2228 2229 2230 |
# File 'lib/stripe/params/account_update_params.rb', line 2228 def restricted @restricted end |
#type ⇒ Object
The status of your business’s website.
2230 2231 2232 |
# File 'lib/stripe/params/account_update_params.rb', line 2230 def type @type end |