class Paystackapi::PaystackCustomers
Public Class Methods
create(body)
click to toggle source
# File lib/paystackapi.rb, line 32 def self.create(body) Transaction.create_customer(body) end
list()
click to toggle source
# File lib/paystackapi.rb, line 35 def self.list Transaction.list_customer end
list_single(body)
click to toggle source
# File lib/paystackapi.rb, line 38 def self.list_single(body) Transaction.fetch_a_customer(body) end