Module: MerbMerchant::Billing::Integrations::TwoCheckout
- Defined in:
- lib/merb_merchant/billing/integrations/two_checkout.rb,
lib/merb_merchant/billing/integrations/two_checkout/helper.rb,
lib/merb_merchant/billing/integrations/two_checkout/return.rb,
lib/merb_merchant/billing/integrations/two_checkout/notification.rb
Defined Under Namespace
Classes: Helper, Notification, Return
Class Method Summary
collapse
Class Method Details
.notification(post) ⇒ Object
20
21
22
|
# File 'lib/merb_merchant/billing/integrations/two_checkout.rb', line 20
def self.notification(post)
Notification.new(post)
end
|
.return(query_string) ⇒ Object
24
25
26
|
# File 'lib/merb_merchant/billing/integrations/two_checkout.rb', line 24
def self.return(query_string)
Return.new(query_string)
end
|
.service_url ⇒ Object
10
11
12
|
# File 'lib/merb_merchant/billing/integrations/two_checkout.rb', line 10
def self.service_url
@@service_url
end
|
.service_url=(service_url) ⇒ Object
14
15
16
|
# File 'lib/merb_merchant/billing/integrations/two_checkout.rb', line 14
def self.service_url=(service_url)
@@service_url = service_url
end
|