Class: Stripe::PaymentIntentCaptureParams::PaymentDetails::CarRentalDatum::DropOff
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCaptureParams::PaymentDetails::CarRentalDatum::DropOff
- Defined in:
- lib/stripe/params/payment_intent_capture_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
Address of the rental location.
-
#location_name ⇒ Object
Location name.
-
#time ⇒ Object
Timestamp for the location.
Instance Method Summary collapse
-
#initialize(address: nil, location_name: nil, time: nil) ⇒ DropOff
constructor
A new instance of DropOff.
Methods inherited from RequestParams
Constructor Details
#initialize(address: nil, location_name: nil, time: nil) ⇒ DropOff
Returns a new instance of DropOff.
529 530 531 532 533 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 529 def initialize(address: nil, location_name: nil, time: nil) @address = address @location_name = location_name @time = time end |
Instance Attribute Details
#address ⇒ Object
Address of the rental location.
523 524 525 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 523 def address @address end |
#location_name ⇒ Object
Location name.
525 526 527 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 525 def location_name @location_name end |
#time ⇒ Object
Timestamp for the location.
527 528 529 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 527 def time @time end |