package model
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- model
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class Contact(name: String, url: String, email: String) extends Product with Serializable
- case class Info(description: String = "", version: String = "", title: String = "", termsOfService: String = "", contact: Option[Contact] = None, license: Option[License] = None, vendorExtensions: Map[String, AnyRef] = Map.empty) extends Product with Serializable
- case class License(name: String, url: String) extends Product with Serializable
Value Members
- def listAsScala[T](jlist: List[T]): List[T]
- def mapAsScala[K, V](jmap: Map[K, V]): Map[K, V]
- def optionalAsScala[T](jopt: Optional[T]): Option[T]
- implicit def scala2swagger(convertMe: Info): io.swagger.models.Info
- implicit def scala2swagger(convertMe: License): io.swagger.models.License
- implicit def scala2swagger(convertMe: Contact): io.swagger.models.Contact
- def setAsScala[T](jset: Set[T]): Set[T]
- implicit def swagger2scala(convertMe: io.swagger.models.Info): Info
- implicit def swagger2scala(convertMe: io.swagger.models.License): Option[License]
- implicit def swagger2scala(convertMe: io.swagger.models.Contact): Option[Contact]