Class: Stripe::PaymentIntentConfirmParams::PaymentDetails::CarRentalDatum::Pickup

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

Defined Under Namespace

Classes: Address

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of Pickup.



709
710
711
712
713
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 709

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.



703
704
705
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 703

def address
  @address
end

#location_nameObject

Location name.



705
706
707
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 705

def location_name
  @location_name
end

#timeObject

Timestamp for the location.



707
708
709
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 707

def time
  @time
end