final case class OpenAPI(openapi: String = "3.1.0", info: Info, jsonSchemaDialect: Option[String] = None, tags: List[Tag] = Nil, servers: List[Server] = Nil, paths: Paths = Paths.Empty, webhooks: Option[Map[String, ReferenceOr[PathItem]]] = None, components: Option[Components] = None, security: List[SecurityRequirement] = Nil, extensions: ListMap[String, ExtensionValue] = ListMap.empty) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OpenAPI
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new OpenAPI(openapi: String = "3.1.0", info: Info, jsonSchemaDialect: Option[String] = None, tags: List[Tag] = Nil, servers: List[Server] = Nil, paths: Paths = Paths.Empty, webhooks: Option[Map[String, ReferenceOr[PathItem]]] = None, components: Option[Components] = None, security: List[SecurityRequirement] = Nil, extensions: ListMap[String, ExtensionValue] = ListMap.empty)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addExtension(key: String, value: ExtensionValue): OpenAPI
  5. def addPathItem(path: String, pathItem: PathItem): OpenAPI
  6. def addSecurity(updated: SecurityRequirement): OpenAPI
  7. def addServer(url: String): OpenAPI
  8. def addServer(server: Server): OpenAPI
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  11. def components(updated: Components): OpenAPI
  12. val components: Option[Components]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def extensions(updated: ListMap[String, ExtensionValue]): OpenAPI
  15. val extensions: ListMap[String, ExtensionValue]
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  17. def info(updated: Info): OpenAPI
  18. val info: Info
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def jsonSchemaDialect(d: Option[String]): OpenAPI
  21. val jsonSchemaDialect: Option[String]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  25. def openapi(updated: String): OpenAPI
  26. val openapi: String
  27. def paths(updated: Paths): OpenAPI
  28. val paths: Paths
  29. def productElementNames: Iterator[String]
    Definition Classes
    Product
  30. def security(updated: List[SecurityRequirement]): OpenAPI
  31. val security: List[SecurityRequirement]
  32. def servers(s: List[Server]): OpenAPI
  33. val servers: List[Server]
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def tags(t: List[Tag]): OpenAPI
  36. val tags: List[Tag]
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. def webhooks(wh: Option[Map[String, ReferenceOr[PathItem]]]): OpenAPI
  41. val webhooks: Option[Map[String, ReferenceOr[PathItem]]]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped