Assuming I have the following config:
{
“default-value”:5,
“some-seq”: [
{“some-other-value”:100},
{“foo”:”bar”},
{“some-other-value”:1500}
]
}
I want it to be decoded to case classes:
case class Config(defaultValue: Int, someSeq: Seq[SomeInteger])
case class SomeInteger(someOtherValue: Int)
So that it creates Config(5, Seq(SomeInteger(100), SomeInteger(5), SomeInteger(1500))) (Second one is 5 since there is no some-other-value key in the second object of the list) Is there a way to do so?
You can add a type parameter to
SomeInteger
andConfig
to specify what the type ofsomeOtherValue
should be. Then you create aConfigReader[Config[Option[Int]]]
and use themap
method to apply the default:Unfortunately this means you need to write
Config[Int]
everywhere instead of justConfig
. But this can easily be fixed by renamingConfig
to e. g.GenConfig
and add a type alias:type Config = GenConfig[Int]
.