Module: OffsitePayments::Integrations::BitPay
- Defined in:
- lib/offsite_payments/integrations/bit_pay.rb
Defined Under Namespace
Classes: Helper, Notification, Return
Class Method Summary
collapse
Class Method Details
.helper(order, account, options = {}) ⇒ Object
14
15
16
|
# File 'lib/offsite_payments/integrations/bit_pay.rb', line 14
def self.helper(order, account, options = {})
Helper.new(order, account, options)
end
|
.notification(post, options = {}) ⇒ Object
10
11
12
|
# File 'lib/offsite_payments/integrations/bit_pay.rb', line 10
def self.notification(post, options = {})
Notification.new(post, options)
end
|
.return(query_string, options = {}) ⇒ Object
18
19
20
|
# File 'lib/offsite_payments/integrations/bit_pay.rb', line 18
def self.return(query_string, options = {})
Return.new(query_string)
end
|