Class: Stripe::AccountUpdateParams::Settings::PaypayPayments::Site::InDevelopment

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(password: nil, username: nil) ⇒ InDevelopment

Returns a new instance of InDevelopment.



2209
2210
2211
2212
# File 'lib/stripe/params/account_update_params.rb', line 2209

def initialize(password: nil, username: nil)
  @password = password
  @username = username
end

Instance Attribute Details

#passwordObject

The password needed to access your business’s website.



2205
2206
2207
# File 'lib/stripe/params/account_update_params.rb', line 2205

def password
  @password
end

#usernameObject

The username needed to access your business’s website.



2207
2208
2209
# File 'lib/stripe/params/account_update_params.rb', line 2207

def username
  @username
end