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

#to_h

Constructor Details

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

Returns a new instance of Site.



2196
2197
2198
2199
2200
2201
# File 'lib/stripe/params/account_update_params.rb', line 2196

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.



2188
2189
2190
# File 'lib/stripe/params/account_update_params.rb', line 2188

def accessible
  @accessible
end

#in_developmentObject

Additional information about your business’s website.



2190
2191
2192
# File 'lib/stripe/params/account_update_params.rb', line 2190

def in_development
  @in_development
end

#restrictedObject

Additional information about your business’s website.



2192
2193
2194
# File 'lib/stripe/params/account_update_params.rb', line 2192

def restricted
  @restricted
end

#typeObject

The status of your business’s website.



2194
2195
2196
# File 'lib/stripe/params/account_update_params.rb', line 2194

def type
  @type
end