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, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of InDevelopment.



2248
2249
2250
2251
# File 'lib/stripe/params/account_update_params.rb', line 2248

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

Instance Attribute Details

#passwordObject

The password needed to access your business’s website.



2244
2245
2246
# File 'lib/stripe/params/account_update_params.rb', line 2244

def password
  @password
end

#usernameObject

The username needed to access your business’s website.



2246
2247
2248
# File 'lib/stripe/params/account_update_params.rb', line 2246

def username
  @username
end