SystemAuthResponse

@Serializable
data class SystemAuthResponse(val status: String, val identityToken: String? = null)

Parameters

status

The status of the authentication

identityToken

An opaque token used to authenticate a user after a successful login

Constructors

Link copied to clipboard
constructor(status: String, identityToken: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "IdentityToken")
val identityToken: String?
Link copied to clipboard
@SerialName(value = "Status")
@Required
val status: String