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.



2306
2307
2308
2309
2310
2311
# File 'lib/stripe/params/account_create_params.rb', line 2306

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.



2298
2299
2300
# File 'lib/stripe/params/account_create_params.rb', line 2298

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2300
2301
2302
# File 'lib/stripe/params/account_create_params.rb', line 2300

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2302
2303
2304
# File 'lib/stripe/params/account_create_params.rb', line 2302

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2304
2305
2306
# File 'lib/stripe/params/account_create_params.rb', line 2304

def type
  @type
end