Kotlin Multiplatform Client for Docker
Toggle table of contents
snapshot
common
Target filter
common
Switch theme
Search in API
Skip to content
Kotlin Multiplatform Client for Docker
Kotlin Multiplatform Client for Docker
/
dev.limebeck.libs.docker.client.model
/
AuthConfig
Auth
Config
@
Serializable
data
class
AuthConfig
(
val
username
:
String
,
val
password
:
String
,
val
email
:
String
?
=
null
,
val
serveraddress
:
String
?
=
null
)
Parameters
username
password
email
serveraddress
Members
Constructors
Auth
Config
Link copied to clipboard
constructor
(
username
:
String
,
password
:
String
,
email
:
String
?
=
null
,
serveraddress
:
String
?
=
null
)
Properties
email
Link copied to clipboard
@
SerialName
(
value
=
"email"
)
val
email
:
String
?
password
Link copied to clipboard
@
SerialName
(
value
=
"password"
)
@
Required
val
password
:
String
serveraddress
Link copied to clipboard
@
SerialName
(
value
=
"serveraddress"
)
val
serveraddress
:
String
?
username
Link copied to clipboard
@
SerialName
(
value
=
"username"
)
@
Required
val
username
:
String