Class: Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Lodging
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Lodging
- Defined in:
- lib/stripe/services/test_helpers/issuing/authorization_service.rb
Instance Attribute Summary collapse
-
#check_in_at ⇒ Object
The time of checking into the lodging.
-
#nights ⇒ Object
The number of nights stayed at the lodging.
Instance Method Summary collapse
-
#initialize(check_in_at: nil, nights: nil) ⇒ Lodging
constructor
A new instance of Lodging.
Methods inherited from RequestParams
Constructor Details
#initialize(check_in_at: nil, nights: nil) ⇒ Lodging
Returns a new instance of Lodging.
494 495 496 497 |
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 494 def initialize(check_in_at: nil, nights: nil) @check_in_at = check_in_at @nights = nights end |
Instance Attribute Details
#check_in_at ⇒ Object
The time of checking into the lodging.
490 491 492 |
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 490 def check_in_at @check_in_at end |
#nights ⇒ Object
The number of nights stayed at the lodging.
492 493 494 |
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 492 def nights @nights end |