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.
3008 3009 3010 3011 3012 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3008 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.
3002 3003 3004 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3002 def day @day end |
#month ⇒ Object
The month of registration, between 1 and 12.
3004 3005 3006 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3004 def month @month end |
#year ⇒ Object
The four-digit year of registration.
3006 3007 3008 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3006 def year @year end |