Class: Stripe::PaymentIntentCreateParams::PaymentDetails::CarRentalDatum::Pickup

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



676
677
678
679
680
# File 'lib/stripe/params/payment_intent_create_params.rb', line 676

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.



670
671
672
# File 'lib/stripe/params/payment_intent_create_params.rb', line 670

def address
  @address
end

#location_nameObject

Location name.



672
673
674
# File 'lib/stripe/params/payment_intent_create_params.rb', line 672

def location_name
  @location_name
end

#timeObject

Timestamp for the location.



674
675
676
# File 'lib/stripe/params/payment_intent_create_params.rb', line 674

def time
  @time
end