# ActivationCode
data class ActivationCode(value: String, expiration: Long)
# Functions
| Name | Summary |
|---|---|
| component1 | Content operator fun component1(): String |
| component2 | Content operator fun component2(): Long |
| copy | Content fun copy(value: String, expiration: Long): ActivationCode |
| equals | Content open operator override fun equals(other: Any?): Boolean |
| hashCode | Content open override fun hashCode(): Int |
| toString | Content open override fun toString(): String |
# Properties
| Name | Summary |
|---|---|
| expiration | @Expose() @SerializedName(value = “expireTime”) val expiration: Long |
| value | @Expose() @SerializedName(value = “actToken”) val value: String |