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.



2351
2352
2353
2354
2355
2356
# File 'lib/stripe/params/account_update_params.rb', line 2351

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.



2343
2344
2345
# File 'lib/stripe/params/account_update_params.rb', line 2343

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2345
2346
2347
# File 'lib/stripe/params/account_update_params.rb', line 2345

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2347
2348
2349
# File 'lib/stripe/params/account_update_params.rb', line 2347

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2349
2350
2351
# File 'lib/stripe/params/account_update_params.rb', line 2349

def type
  @type
end