William Cheng 4ac054f723
Hide timestamp in Scala Play server samples (#5495)
* hide timestamp in scala play server output

* add chameleon82 to scala tech committee
2020-03-02 14:56:07 +08:00

19 lines
324 B
Scala

package model
import play.api.libs.json._
/**
* Describes the result of uploading an image resource
*/
case class ApiResponse(
code: Option[Int],
`type`: Option[String],
message: Option[String]
)
object ApiResponse {
implicit lazy val apiResponseJsonFormat: Format[ApiResponse] = Json.format[ApiResponse]
}