I try to get a simple SCIO code running.
case class Foo(first: String, second: String, third: String)
Trying to use Foo in a SCollection it leads to an error:
Cannot find an implicit Coder instance for type:
>> (String, my.Foo)
...
<redacted prose>
...
There is a lot written in the error message. I cannot seem to grasp, though how all that text provides any information to what I am supposed to do around Coders to solve this problem.
Can anyone shed some light how one would solve this.
Bonus points for not using implicits.
Here is a minimalistic example