class SeatGeek::Query::AttendeeCount

Public Class Methods

new(count) click to toggle source
# File lib/seat_geek/query/attendee_count.rb, line 4
def initialize(count)
  @count = count
end

Public Instance Methods

query() click to toggle source
# File lib/seat_geek/query/attendee_count.rb, line 8
def query
  "&listing_count.gt=#{@count}"
end