kfx
Toggle table of contents
jvm
Platform filter
jvm
Switch theme
Search in API
kfx
openapi-model
/
io.github.hfhbd.kfx.openapi
/
OpenApi
/
Server
Server
@
Serializable
data
class
Server
(
val
url
:
String
,
val
description
:
String
?
=
null
,
val
variables
:
Map
<
String
,
OpenApi.Server.Variable
>
=
emptyMap()
)
(
source
)
Members
Constructors
Server
Link copied to clipboard
constructor
(
url
:
String
,
description
:
String
?
=
null
,
variables
:
Map
<
String
,
OpenApi.Server.Variable
>
=
emptyMap()
)
Types
Variable
Link copied to clipboard
@
Serializable
data
class
Variable
(
val
description
:
String
?
=
null
,
val
enum
:
List
<
String
>
=
emptyList()
,
val
default
:
String
)
Properties
description
Link copied to clipboard
val
description
:
String
?
url
Link copied to clipboard
val
url
:
String
variables
Link copied to clipboard
val
variables
:
Map
<
String
,
OpenApi.Server.Variable
>