Class: Stripe::AccountUpdateParams::Settings::PaypayPayments::Site

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_update_params.rb

Defined Under Namespace

Classes: Accessible, InDevelopment, Restricted

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(accessible: nil, in_development: nil, restricted: nil, type: nil) ⇒ Site

Returns a new instance of Site.



2228
2229
2230
2231
2232
2233
# File 'lib/stripe/params/account_update_params.rb', line 2228

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

#accessibleObject

Additional information about your business’s website.



2220
2221
2222
# File 'lib/stripe/params/account_update_params.rb', line 2220

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2222
2223
2224
# File 'lib/stripe/params/account_update_params.rb', line 2222

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2224
2225
2226
# File 'lib/stripe/params/account_update_params.rb', line 2224

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2226
2227
2228
# File 'lib/stripe/params/account_update_params.rb', line 2226

def type
  @type
end