class TicketingHub::Venue

Public Instance Methods

option(date, time) click to toggle source
# File lib/ticketing_hub/venue.rb, line 17
def option(date, time)
  client.get("#{path}/#{id}/option", { date: date, time: time }, TicketingHub::Option).first
end
orders() click to toggle source
# File lib/ticketing_hub/venue.rb, line 13
def orders
  client.get "#{path}/#{id}/orders", {}, TicketingHub::Order
end
seasons() click to toggle source
# File lib/ticketing_hub/venue.rb, line 21
def seasons
  client.get "#{path}/#{id}/seasons"
end
tickets(date=nil, time=nil) click to toggle source
# File lib/ticketing_hub/venue.rb, line 9
def tickets date=nil, time=nil
  client.get "#{path}/#{id}/tickets", { date: date, time: time }, TicketingHub::Ticket
end
variations() click to toggle source
# File lib/ticketing_hub/venue.rb, line 25
def variations
  client.get "#{path}/#{id}/variations"
end