class Braintree::PaymentMethod
Public Class Methods
create(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 5 def self.create(*args) Configuration.gateway.payment_method.create(*args) end
create!(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 9 def self.create!(*args) Configuration.gateway.payment_method.create!(*args) end
delete(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 25 def self.delete(*args) Configuration.gateway.payment_method.delete(*args) end
find(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 13 def self.find(*args) Configuration.gateway.payment_method.find(*args) end
grant(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 29 def self.grant(*args) Configuration.gateway.payment_method.grant(*args) end
revoke(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 33 def self.revoke(*args) Configuration.gateway.payment_method.revoke(*args) end
update(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 17 def self.update(*args) Configuration.gateway.payment_method.update(*args) end
update!(*args)
click to toggle source
# File lib/braintree/payment_method.rb, line 21 def self.update!(*args) Configuration.gateway.payment_method.update!(*args) end