Skip to content

Instantly share code, notes, and snippets.

View ccocchi's full-sized avatar

Christopher Cocchi-Perrier ccocchi

  • WildCodeSchool
  • Paris, France
  • X @ccocchi
View GitHub Profile
case class Metric(id: String, aggregationOperation: AggregationOperation)
case class Dimension(id: String)
object AggregationOperation extends Enumeration {
type AggregationOperation = Value
val Sum, Average, Min, Max, Count = Value
}
/**