William Cheng 6abc4fdab2
Migrate all scala generators to use OAS3 (#6407)
* 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
2020-05-25 23:09:34 +08:00

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]
}