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