You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
play-json doesn't generate codecs by default for empty case classes (or case object), we have replaced those with a case class having a single argument called noData, like case class Response(noData: String = ""). Let's remove such trick and use empty classes (or case object) instead.
The text was updated successfully, but these errors were encountered:
play-json doesn't generate codecs by default for empty case classes (or case object), we have replaced those with a case class having a single argument called
noData
, likecase class Response(noData: String = "")
. Let's remove such trick and use empty classes (or case object) instead.The text was updated successfully, but these errors were encountered: