Class: Stripe::AccountCreateParams::Settings::PaypayPayments::Site

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_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.



2368
2369
2370
2371
2372
2373
# File 'lib/stripe/params/account_create_params.rb', line 2368

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.



2360
2361
2362
# File 'lib/stripe/params/account_create_params.rb', line 2360

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2362
2363
2364
# File 'lib/stripe/params/account_create_params.rb', line 2362

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2364
2365
2366
# File 'lib/stripe/params/account_create_params.rb', line 2364

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2366
2367
2368
# File 'lib/stripe/params/account_create_params.rb', line 2366

def type
  @type
end