# Package-level declarations
# Types
Name | Summary |
---|---|
ActivationTokenErrorResponse | data class ActivationTokenErrorResponse(val projectId: String, val userId: String, val accessId: String?) The response returned from getActivationToken method when there is an error in the request. |
ActivationTokenException | sealed class ActivationTokenException : Exception A class hierarchy that describes verification confirmation issues. |
ActivationTokenResponse | data class ActivationTokenResponse(val projectId: String, val accessId: String?, val userId: String, val activationToken: String) Response returned from getActivationToken method of MIRACLTrust |
EmailVerificationMethod | enum EmailVerificationMethod : Enum<EmailVerificationMethod> Possible email verification methods. |
RegistrationException | sealed class RegistrationException : Exception A class hierarchy that describes registration issues. |
VerificationException | sealed class VerificationException : Exception A class hierarchy that describes verification issues. |
VerificationResponse | data class VerificationResponse(val backoff: Long, val method: EmailVerificationMethod) Response returned from sendVerificationEmail method of MIRACLTrust. |