class EpsRapid::Booking
Public Class Methods
complete_payment_session(path, **params)
click to toggle source
# File lib/eps-rapid/booking.rb, line 17 def self.complete_payment_session(path, **params) EpsRapid::Client.put(path, params) end
create_booking(path, body, **params)
click to toggle source
# File lib/eps-rapid/booking.rb, line 9 def self.create_booking(path, body, **params) EpsRapid::Client.post(path, body, params) end
register_payment(path, body, **params)
click to toggle source
# File lib/eps-rapid/booking.rb, line 5 def self.register_payment(path, body, **params) EpsRapid::Client.post(path, body, params) end
resume_booking(path, **params)
click to toggle source
# File lib/eps-rapid/booking.rb, line 13 def self.resume_booking(path, **params) EpsRapid::Client.put(path, params) end