# ActivationToken
data class ActivationToken(value: String, expiration: Long?)
The code returned after the user has verified their identity successfully.
# Parameters
| value | String representation of the code. | 
| expiration | When this code will expire. | 
# Constructors
| ActivationToken | fun ActivationToken(value: String, expiration: Long?) | 
# Properties
| Name | Summary | 
|---|---|
| expiration | val expiration: Long? | 
| value | val value: String |