Class: Stripe::SetupIntentService::ConfirmParams::PaymentMethodData::Rechnung::Dob
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentService::ConfirmParams::PaymentMethodData::Rechnung::Dob
- Defined in:
- lib/stripe/services/setup_intent_service.rb
Instance Attribute Summary collapse
-
#day ⇒ Object
The day of birth, between 1 and 31.
-
#month ⇒ Object
The month of birth, between 1 and 12.
-
#year ⇒ Object
The four-digit year of birth.
Instance Method Summary collapse
-
#initialize(day: nil, month: nil, year: nil) ⇒ Dob
constructor
A new instance of Dob.
Methods inherited from RequestParams
Constructor Details
#initialize(day: nil, month: nil, year: nil) ⇒ Dob
Returns a new instance of Dob.
2690 2691 2692 2693 2694 |
# File 'lib/stripe/services/setup_intent_service.rb', line 2690 def initialize(day: nil, month: nil, year: nil) @day = day @month = month @year = year end |
Instance Attribute Details
#day ⇒ Object
The day of birth, between 1 and 31.
2684 2685 2686 |
# File 'lib/stripe/services/setup_intent_service.rb', line 2684 def day @day end |
#month ⇒ Object
The month of birth, between 1 and 12.
2686 2687 2688 |
# File 'lib/stripe/services/setup_intent_service.rb', line 2686 def month @month end |
#year ⇒ Object
The four-digit year of birth.
2688 2689 2690 |
# File 'lib/stripe/services/setup_intent_service.rb', line 2688 def year @year end |