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

#to_h

Constructor Details

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

Returns a new instance of Site.



2274
2275
2276
2277
2278
2279
# File 'lib/stripe/params/account_create_params.rb', line 2274

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.



2266
2267
2268
# File 'lib/stripe/params/account_create_params.rb', line 2266

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2268
2269
2270
# File 'lib/stripe/params/account_create_params.rb', line 2268

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2270
2271
2272
# File 'lib/stripe/params/account_create_params.rb', line 2270

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2272
2273
2274
# File 'lib/stripe/params/account_create_params.rb', line 2272

def type
  @type
end