Class: Shift4::PaymentMethods
- Inherits:
-
Object
- Object
- Shift4::PaymentMethods
show all
- Extended by:
- TransactionBase
- Defined in:
- lib/shift4/payment_methods.rb
Class Method Summary
collapse
communicator, communicator=
Class Method Details
.create(params) ⇒ Object
7
8
9
|
# File 'lib/shift4/payment_methods.rb', line 7
def self.create(params)
communicator.post("#{Configuration.api_url}/payment-methods", json: params)
end
|
.delete(plan_id) ⇒ Object
15
16
17
|
# File 'lib/shift4/payment_methods.rb', line 15
def self.delete(plan_id)
communicator.delete("#{Configuration.api_url}/payment-methods/#{plan_id}")
end
|
.list(params = nil) ⇒ Object
19
20
21
|
# File 'lib/shift4/payment_methods.rb', line 19
def self.list(params = nil)
communicator.get("#{Configuration.api_url}/payment-methods", query: params)
end
|
.retrieve(plan_id) ⇒ Object
11
12
13
|
# File 'lib/shift4/payment_methods.rb', line 11
def self.retrieve(plan_id)
communicator.get("#{Configuration.api_url}/payment-methods/#{plan_id}")
end
|