I have the following Case Class:
case class MyClass(name: String, params: Map[String, String])
I couldn't figure out how to create a Config Description for this. Also automatic derivation with Magnolia did not work.
Error:(70, 44) could not find implicit value for evidence parameter of type zio.config.magnolia.ConfigDescriptorProvider[zio.config.examples.MyConfig.MyClass]
private val automaticConfig = description[MyClass]
With a list of Tuples automatic Derivation works (but still no idea how the Config Description for this).
final case class MyClass(name: String, params: List[(String, String)])
Is this a restriction? I also couldn't find an example.