class Seatsio::UsageReportsClient

def details_for_month(month)

def details_for_month(month)
  url = "reports/usage/month/" + month.serialize
  body = @http_client.get(url)
  body.map {|item| Domain::UsageDetails.new(item)}
end