Class: Stripe::PaymentIntentUpdateParams::PaymentMethodData::Rechnung::Dob
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::PaymentMethodData::Rechnung::Dob
- Defined in:
- lib/stripe/params/payment_intent_update_params.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.
1205 1206 1207 1208 1209 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1205 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.
1199 1200 1201 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1199 def day @day end |
#month ⇒ Object
The month of birth, between 1 and 12.
1201 1202 1203 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1201 def month @month end |
#year ⇒ Object
The four-digit year of birth.
1203 1204 1205 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1203 def year @year end |