Module: ActiveMerchant::Billing::Integrations::TwoCheckout
- Defined in:
- lib/active_merchant/billing/integrations/two_checkout.rb,
lib/active_merchant/billing/integrations/two_checkout/helper.rb,
lib/active_merchant/billing/integrations/two_checkout/return.rb,
lib/active_merchant/billing/integrations/two_checkout/notification.rb
Defined Under Namespace
Classes: Helper, Notification, Return
Class Method Summary
collapse
Class Method Details
.notification(post, options = {}) ⇒ Object
12
13
14
|
# File 'lib/active_merchant/billing/integrations/two_checkout.rb', line 12
def self.notification(post, options = {})
Notification.new(post)
end
|
.return(query_string, options = {}) ⇒ Object
16
17
18
|
# File 'lib/active_merchant/billing/integrations/two_checkout.rb', line 16
def self.return(query_string, options = {})
Return.new(query_string)
end
|