Sha256: fd12abe0eaa6307ab826839ffae4b6f8d19c59c5a725f1ea33fdc11466c5bb4b
Contents?: true
Size: 439 Bytes
Versions: 2
Compression:
Stored size: 439 Bytes
Contents
module Plaid # Public: Class used to call the Categories product. class Categories def initialize(client) @client = client end # Public: Get information about all Plaid categories # # Does a POST /categories/get call to retrieve a list of all categories. # # Returns a parsed JSON of a list of categories def get payload = {} @client.post('categories/get', payload) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plaid-4.1.0 | lib/plaid/products/categories.rb |
plaid-4.0.0 | lib/plaid/products/categories.rb |