Class: Stripe::Account::UpdateParams::Company::RegistrationDate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Account::UpdateParams::Company::RegistrationDate
- Defined in:
- lib/stripe/resources/account.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.
1984 1985 1986 1987 1988 |
# File 'lib/stripe/resources/account.rb', line 1984 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.
1978 1979 1980 |
# File 'lib/stripe/resources/account.rb', line 1978 def day @day end |
#month ⇒ Object
The month of registration, between 1 and 12.
1980 1981 1982 |
# File 'lib/stripe/resources/account.rb', line 1980 def month @month end |
#year ⇒ Object
The four-digit year of registration.
1982 1983 1984 |
# File 'lib/stripe/resources/account.rb', line 1982 def year @year end |