module Fulfillment::Resources::Types

Public Instance Methods

find(type_name) click to toggle source
# File lib/fulfillment/resources/types.rb, line 11
def find(type_name)
  response = Request.new("types/#{type_name}").get
  response.body
end
find_all() click to toggle source
# File lib/fulfillment/resources/types.rb, line 6
def find_all
  response = Request.new("types").get
  response.body
end