Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Klarna::SupplementaryPurchaseData::BusReservationDetail::Departure

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

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

Constructor Details

#initialize(address: nil, departs_at: nil, departure_location: nil) ⇒ Departure

Returns a new instance of Departure.



3579
3580
3581
3582
3583
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3579

def initialize(address: nil, departs_at: nil, departure_location: nil)
  @address = address
  @departs_at = departs_at
  @departure_location = departure_location
end

Instance Attribute Details

#addressObject

Address of the departure location.



3573
3574
3575
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3573

def address
  @address
end

#departs_atObject

Timestamp of departure.



3575
3576
3577
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3575

def departs_at
  @departs_at
end

#departure_locationObject

Identifier name or reference for the origin location.



3577
3578
3579
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3577

def departure_location
  @departure_location
end