forked from loafle/openapi-generator-original
19 lines
492 B
Scala
19 lines
492 B
Scala
package model
|
|
|
|
import play.api.libs.json._
|
|
|
|
/**
|
|
* Describes the result of uploading an image resource
|
|
*/
|
|
@javax.annotation.Generated(value = Array("org.openapitools.codegen.languages.ScalaPlayFrameworkServerCodegen"), date = "2019-03-26T16:21:58.590+08:00[Asia/Hong_Kong]")
|
|
case class ApiResponse(
|
|
code: Option[Int],
|
|
`type`: Option[String],
|
|
message: Option[String]
|
|
)
|
|
|
|
object ApiResponse {
|
|
implicit lazy val apiResponseJsonFormat: Format[ApiResponse] = Json.format[ApiResponse]
|
|
}
|
|
|