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

21 lines
504 B
Scala

package model
import play.api.libs.json._
import play.api.libs.Files.TemporaryFile
/**
* Represents the Swagger definition for inline_object_1.
* @param additionalMetadata Additional data to pass to server
* @param file file to upload
*/
case class InlineObject1(
additionalMetadata: Option[String],
file: Option[TemporaryFile]
)
object InlineObject1 {
// NOTE: The JSON format for InlineObject1 was not generated because it contains a file variable which cannot be encoded to JSON.
}