Module: ActiveMerchant::Billing::Integrations::BitPay
- Defined in:
- lib/active_merchant/billing/integrations/bit_pay.rb,
lib/active_merchant/billing/integrations/bit_pay/helper.rb,
lib/active_merchant/billing/integrations/bit_pay/return.rb,
lib/active_merchant/billing/integrations/bit_pay/notification.rb
Defined Under Namespace
Classes: Helper, Notification, Return
Class Method Summary
collapse
Class Method Details
.helper(order, account, options = {}) ⇒ Object
20
21
22
|
# File 'lib/active_merchant/billing/integrations/bit_pay.rb', line 20
def self.helper(order, account, options = {})
Helper.new(order, account, options)
end
|
.notification(post, options = {}) ⇒ Object
16
17
18
|
# File 'lib/active_merchant/billing/integrations/bit_pay.rb', line 16
def self.notification(post, options = {})
Notification.new(post, options)
end
|
.return(query_string, options = {}) ⇒ Object
24
25
26
|
# File 'lib/active_merchant/billing/integrations/bit_pay.rb', line 24
def self.return(query_string, options = {})
Return.new(query_string)
end
|