Skip to content

Instantly share code, notes, and snippets.

@BenFradet
Created April 13, 2017 17:32
Show Gist options
  • Save BenFradet/9162dffe27e0e0d993d10f9240e9baf4 to your computer and use it in GitHub Desktop.
Save BenFradet/9162dffe27e0e0d993d10f9240e9baf4 to your computer and use it in GitHub Desktop.
Coproduct encoder
sealed trait A
final case class B(b: Int)
final case class C(c: Int)
B(2).asJson
// { "B": {"b": 2}, "C": {"c": null} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment