Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::CarRentalDatum::Pickup

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_update_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.



667
668
669
670
671
# File 'lib/stripe/params/payment_intent_update_params.rb', line 667

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.



661
662
663
# File 'lib/stripe/params/payment_intent_update_params.rb', line 661

def address
  @address
end

#location_nameObject

Location name.



663
664
665
# File 'lib/stripe/params/payment_intent_update_params.rb', line 663

def location_name
  @location_name
end

#timeObject

Timestamp for the location.



665
666
667
# File 'lib/stripe/params/payment_intent_update_params.rb', line 665

def time
  @time
end