I am using circe in scala and have a following requirement :
Let's say I have some class like below and I want to avoid password field from being serialised then is there any way to let circe know that it should not serialise password field?
In other libraries we have annotations like @transient which prevent field from being serialised ,is there any such annotation in circe?
case class Employee(
name: String,
password: String)