Class: Stripe::AccountUpdateParams::Settings::PaypayPayments::Site::InDevelopment
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountUpdateParams::Settings::PaypayPayments::Site::InDevelopment
- Defined in:
- lib/stripe/params/account_update_params.rb
Instance Attribute Summary collapse
-
#password ⇒ Object
The password needed to access your business’s website.
-
#username ⇒ Object
The username needed to access your business’s website.
Instance Method Summary collapse
-
#initialize(password: nil, username: nil) ⇒ InDevelopment
constructor
A new instance of InDevelopment.
Methods inherited from RequestParams
Constructor Details
#initialize(password: nil, username: nil) ⇒ InDevelopment
Returns a new instance of InDevelopment.
2205 2206 2207 2208 |
# File 'lib/stripe/params/account_update_params.rb', line 2205 def initialize(password: nil, username: nil) @password = password @username = username end |
Instance Attribute Details
#password ⇒ Object
The password needed to access your business’s website.
2201 2202 2203 |
# File 'lib/stripe/params/account_update_params.rb', line 2201 def password @password end |
#username ⇒ Object
The username needed to access your business’s website.
2203 2204 2205 |
# File 'lib/stripe/params/account_update_params.rb', line 2203 def username @username end |