sealed class RegistrationState
error
: RegistrationError?
[Get] |
An optional registration error associated with this state
Signature
open val error: RegistrationError? = null |
data class Unavailable(val error: RegistrationError? = null) : RegistrationState
Unavailable
(
error
)
|
Signature
constructor(error: RegistrationError? = null) Parameters Returns RegistrationState.Unavailable |
error
: RegistrationError?
[Get] |
An optional registration error that caused this state
Signature
open override val error: RegistrationError? = null |
data class Available(val error: RegistrationError? = null) : RegistrationState
Available
(
error
)
|
Signature
constructor(error: RegistrationError? = null) Parameters Returns RegistrationState.Available |
error
: RegistrationError?
[Get] |
An optional registration error that caused this state
Signature
open override val error: RegistrationError? = null |
data class Unregistering(val error: RegistrationError? = null) : RegistrationState
Unregistering
(
error
)
|
Signature
constructor(error: RegistrationError? = null) Parameters Returns RegistrationState.Unregistering |
error
: RegistrationError?
[Get] |
An optional registration error that caused this state
Signature
open override val error: RegistrationError? = null |
data class Registered(val error: RegistrationError? = null) : RegistrationState
Registered
(
error
)
|
Signature
constructor(error: RegistrationError? = null) Parameters Returns RegistrationState.Registered |
error
: RegistrationError?
[Get] |
An optional registration error that caused this state
Signature
open override val error: RegistrationError? = null |
data class Registering(val error: RegistrationError? = null) : RegistrationState
Registering
(
error
)
|
Signature
constructor(error: RegistrationError? = null) Parameters Returns RegistrationState.Registering |
error
: RegistrationError?
[Get] |
An optional registration error that caused this state
Signature
open override val error: RegistrationError? = null |