class Wizypay::MerchantCategory

Public Class Methods

all() click to toggle source
# File lib/wizypay/merchant_category.rb, line 3
def self.all
  raw = ApiClient.get('/merchant_categories')
  Collection.new(self, raw[:data], raw[:meta])
end