Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::CarRentalDatum::DropOff

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) ⇒ DropOff

Returns a new instance of DropOff.



599
600
601
602
603
# File 'lib/stripe/params/payment_intent_update_params.rb', line 599

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.



593
594
595
# File 'lib/stripe/params/payment_intent_update_params.rb', line 593

def address
  @address
end

#location_nameObject

Location name.



595
596
597
# File 'lib/stripe/params/payment_intent_update_params.rb', line 595

def location_name
  @location_name
end

#timeObject

Timestamp for the location.



597
598
599
# File 'lib/stripe/params/payment_intent_update_params.rb', line 597

def time
  @time
end