All Downloads are FREE. Search and download functionalities are using the official Maven repository.

almond.interpreter.Inspection.scala Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package almond.interpreter

import almond.interpreter.api.DisplayData
import almond.interpreter.util.DisplayDataOps.toDisplayDataOps
import argonaut.Json

final case class Inspection(data: Map[String, Json], metadata: Map[String, Json] = Map.empty)

object Inspection {
  def fromDisplayData(data: DisplayData): Inspection =
    Inspection(data.jsonData, data.jsonMetadata)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy