Class: Stripe::V2::Core::AccountUpdateParams::Identity::BusinessDetails::RegistrationDate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Identity::BusinessDetails::RegistrationDate
- Defined in:
- lib/stripe/params/v2/core/account_update_params.rb
Instance Attribute Summary collapse
-
#day ⇒ Object
The day of registration, between 1 and 31.
-
#month ⇒ Object
The month of registration, between 1 and 12.
-
#year ⇒ Object
The four-digit year of registration.
Instance Method Summary collapse
-
#initialize(day: nil, month: nil, year: nil) ⇒ RegistrationDate
constructor
A new instance of RegistrationDate.
Methods inherited from RequestParams
Constructor Details
#initialize(day: nil, month: nil, year: nil) ⇒ RegistrationDate
Returns a new instance of RegistrationDate.
2486 2487 2488 2489 2490 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2486 def initialize(day: nil, month: nil, year: nil) @day = day @month = month @year = year end |
Instance Attribute Details
#day ⇒ Object
The day of registration, between 1 and 31.
2480 2481 2482 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2480 def day @day end |
#month ⇒ Object
The month of registration, between 1 and 12.
2482 2483 2484 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2482 def month @month end |
#year ⇒ Object
The four-digit year of registration.
2484 2485 2486 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2484 def year @year end |