class Stall::Atos::Gateway::Request

Attributes

cart[R]

Public Class Methods

new(cart) click to toggle source
# File lib/stall/atos/gateway.rb, line 80
def initialize(cart)
  @cart = cart
end

Public Instance Methods

gateway() click to toggle source
# File lib/stall/atos/gateway.rb, line 92
def gateway
  @gateway = Stall::Atos::Gateway.new(cart)
end
params() click to toggle source
# File lib/stall/atos/gateway.rb, line 88
def params
  @params ||= Stall::Atos::PaymentParams.new(gateway)
end
payment_form_partial_path() click to toggle source
# File lib/stall/atos/gateway.rb, line 84
def payment_form_partial_path
  'stall/atos/payment_form'
end