forked from loafle/openapi-generator-original
* migrate all scala generators to use oas3 * add back pom.xml for scala-sttp * skip form model in scalaz * fix scala lagom tests * add new files * skip form models in scala finch petstore * update samples
20 lines
390 B
Scala
20 lines
390 B
Scala
package model
|
|
|
|
import play.api.libs.json._
|
|
|
|
/**
|
|
* Represents the Swagger definition for inline_object.
|
|
* @param name Updated name of the pet
|
|
* @param status Updated status of the pet
|
|
*/
|
|
|
|
case class InlineObject(
|
|
name: Option[String],
|
|
status: Option[String]
|
|
)
|
|
|
|
object InlineObject {
|
|
implicit lazy val inlineObjectJsonFormat: Format[InlineObject] = Json.format[InlineObject]
|
|
}
|
|
|