Class: Stall::Payments::ManualPaymentGateway

Inherits:
Gateway
  • Object
show all
Defined in:
lib/stall/payments/manual_payment_gateway.rb

Defined Under Namespace

Modules: ChecksumCalculator Classes: Request, Response

Instance Attribute Summary

Attributes inherited from Gateway

#cart

Class Method Summary collapse

Methods inherited from Gateway

for, #initialize, #payment_urls, register, #rendering_options, #synchronous_payment_notification?, #transaction_id

Constructor Details

This class inherits a constructor from Stall::Payments::Gateway

Class Method Details

.request(cart) ⇒ Object



8
9
10
# File 'lib/stall/payments/manual_payment_gateway.rb', line 8

def self.request(cart)
  Request.new(cart)
end

.response(_request) ⇒ Object



12
13
14
# File 'lib/stall/payments/manual_payment_gateway.rb', line 12

def self.response(_request)
  Response.new(_request)
end