# 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.
# Parameters
| projectId | Identifier of the project against which the verification is performed. |
| userId | Identifier of the user for which the verification is performed. |
| accessId | Identifier of the session from which the verification started. |
# Constructors
| ActivationTokenErrorResponse | constructor(projectId: String, userId: String, accessId: String?) |
# Properties
| Name | Summary |
|---|---|
| accessId | val accessId: String? |
| projectId | val projectId: String |
| userId | val userId: String |