Class: Stripe::PaymentIntentCaptureParams::PaymentDetails::CarRentalDatum::Pickup

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_capture_params.rb

Defined Under Namespace

Classes: Address

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(address: nil, location_name: nil, time: nil) ⇒ Pickup

Returns a new instance of Pickup.



610
611
612
613
614
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 610

def initialize(address: nil, location_name: nil, time: nil)
  @address = address
  @location_name = location_name
  @time = time
end

Instance Attribute Details

#addressObject

Address of the rental location.



604
605
606
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 604

def address
  @address
end

#location_nameObject

Location name.



606
607
608
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 606

def location_name
  @location_name
end

#timeObject

Timestamp for the location.



608
609
610
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 608

def time
  @time
end