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, 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.



2337
2338
2339
2340
2341
2342
# File 'lib/stripe/params/account_update_params.rb', line 2337

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.



2329
2330
2331
# File 'lib/stripe/params/account_update_params.rb', line 2329

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business's website.



2331
2332
2333
# File 'lib/stripe/params/account_update_params.rb', line 2331

def in_development
  @in_development
end

#restrictedObject

Additional information about your business's website.



2333
2334
2335
# File 'lib/stripe/params/account_update_params.rb', line 2333

def restricted
  @restricted
end

#typeObject

The status of your business's website.



2335
2336
2337
# File 'lib/stripe/params/account_update_params.rb', line 2335

def type
  @type
end