class Seatsio::ChartsClient

def list(chart_filter: nil, tag: nil, expand_events: nil)

def list(chart_filter: nil, tag: nil, expand_events: nil)
  cursor = Pagination::Cursor.new(Domain::Chart, 'charts', @http_client)
  cursor.set_query_param('filter', chart_filter)
  cursor.set_query_param('tag', tag)
  cursor.set_query_param('expand', 'events') if expand_events
  cursor
end