Class: Stripe::AccountCreateParams::Settings::PaypayPayments::Site::InDevelopment
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Settings::PaypayPayments::Site::InDevelopment
- Defined in:
- lib/stripe/params/account_create_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
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.
2294 2295 2296 2297 |
# File 'lib/stripe/params/account_create_params.rb', line 2294 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.
2290 2291 2292 |
# File 'lib/stripe/params/account_create_params.rb', line 2290 def password @password end |
#username ⇒ Object
The username needed to access your business’s website.
2292 2293 2294 |
# File 'lib/stripe/params/account_create_params.rb', line 2292 def username @username end |