in fapi-client/src/main/scala/com/gu/facia/api/models/faciapress/FaciaPressQueue.scala [40:45]
override def writes(o: FrontPath): JsValue = JsString(o.get)
override def reads(json: JsValue): JsResult[FrontPath] = json match {
case JsString(path) => JsSuccess(FrontPath(path))
case _ => JsError("Front path must be a String")
}