module Uiza::APIResource::CategoryResource

Public Instance Methods

create_category(params) click to toggle source
# File lib/uiza/api_resource/category_resource.rb, line 4
def create_category params
  Uiza::Category.create params
end
retrieve_category(id) click to toggle source
# File lib/uiza/api_resource/category_resource.rb, line 8
def retrieve_category id
  Uiza::Category.retrieve id
end
update_category(params) click to toggle source
# File lib/uiza/api_resource/category_resource.rb, line 12
def update_category params
  Uiza::Category.update params
end