All Downloads are FREE. Search and download functionalities are using the official Maven repository.

data.Response.scala Maven / Gradle / Ivy

package data

import play.api.libs.json.Json

/**
 * Simple class used to represent a response from a remote service
 *
 * @param id
 * @param delay
 */
case class Response(id: String, delay: Long)

object Response {
  implicit val responseWrites = Json.writes[Response]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy