module Fulfillment::Resources::Venues

Public Instance Methods

find(fulfillment_method, id) click to toggle source
# File lib/fulfillment/resources/venues.rb, line 11
def find(fulfillment_method, id)
  response = Request.new("venues/#{id}", fulfillment_method: fulfillment_method).get
  return if response.body.nil? || response.body.empty?
  response.body
end