Class: Stripe::ChargeService::UpdateParams::PaymentDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/charge_service.rb

Defined Under Namespace

Classes: CarRental, EventDetails, Flight, Lodging, Subscription

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(car_rental: nil, event_details: nil, flight: nil, lodging: nil, subscription: nil) ⇒ PaymentDetails

Returns a new instance of PaymentDetails.



897
898
899
900
901
902
903
904
905
906
907
908
909
# File 'lib/stripe/services/charge_service.rb', line 897

def initialize(
  car_rental: nil,
  event_details: nil,
  flight: nil,
  lodging: nil,
  subscription: nil
)
  @car_rental = car_rental
  @event_details = event_details
  @flight = flight
  @lodging = lodging
  @subscription = subscription
end

Instance Attribute Details

#car_rentalObject

Car rental details for this PaymentIntent.



887
888
889
# File 'lib/stripe/services/charge_service.rb', line 887

def car_rental
  @car_rental
end

#event_detailsObject

Event details for this PaymentIntent



889
890
891
# File 'lib/stripe/services/charge_service.rb', line 889

def event_details
  @event_details
end

#flightObject

Flight reservation details for this PaymentIntent



891
892
893
# File 'lib/stripe/services/charge_service.rb', line 891

def flight
  @flight
end

#lodgingObject

Lodging reservation details for this PaymentIntent



893
894
895
# File 'lib/stripe/services/charge_service.rb', line 893

def lodging
  @lodging
end

#subscriptionObject

Subscription details for this PaymentIntent



895
896
897
# File 'lib/stripe/services/charge_service.rb', line 895

def subscription
  @subscription
end