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
Constructor Details
#initialize(password: nil, username: nil) ⇒ InDevelopment
Returns a new instance of InDevelopment.
2251 2252 2253 2254 |
# File 'lib/stripe/params/account_create_params.rb', line 2251 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.
2247 2248 2249 |
# File 'lib/stripe/params/account_create_params.rb', line 2247 def password @password end |
#username ⇒ Object
The username needed to access your business’s website.
2249 2250 2251 |
# File 'lib/stripe/params/account_create_params.rb', line 2249 def username @username end |