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.



2239
2240
2241
2242
2243
2244
# File 'lib/stripe/params/account_update_params.rb', line 2239

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.



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

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2233
2234
2235
# File 'lib/stripe/params/account_update_params.rb', line 2233

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2235
2236
2237
# File 'lib/stripe/params/account_update_params.rb', line 2235

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2237
2238
2239
# File 'lib/stripe/params/account_update_params.rb', line 2237

def type
  @type
end