class API::Entity

Public Class Methods

all(params) click to toggle source
# File lib/quintype/api/entity.rb, line 4
def all(params)
  API.entities(params)
end
find(id) click to toggle source
# File lib/quintype/api/entity.rb, line 8
def find(id)
  API.find_entity(id)
end
sub_entity(entity_id, sub_entity_id) click to toggle source
# File lib/quintype/api/entity.rb, line 12
def sub_entity(entity_id, sub_entity_id)
  API.sub_entity(entity_id, sub_entity_id)
end