# ActivationTokenResponse
data class ActivationTokenResponse(val projectId: String, val accessId: String?, val userId: String, val activationToken: String)
Response returned from getActivationToken method of MIRACLTrust
# Parameters
| projectId | Identifier of the project against which the verification is performed. |
| accessId | Identifier of the session from which the verification started. |
| userId | Identifier of the user that is currently verified. |
| activationToken | The activation token returned after successful user verification. |
# Constructors
| ActivationTokenResponse | constructor(projectId: String, accessId: String?, userId: String, activationToken: String) |
# Properties
| Name | Summary |
|---|---|
| accessId | val accessId: String? |
| activationToken | val activationToken: String |
| projectId | val projectId: String |
| userId | val userId: String |