AccountTermsOfService

data class AccountTermsOfService(val token: String? = null, val acceptedAt: String? = null, val ipAddress: String? = null)

Terms-of-service acceptance record for an account.

Constructors

Link copied to clipboard
constructor(token: String? = null, acceptedAt: String? = null, ipAddress: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "accepted_at")
val acceptedAt: String? = null

ISO-8601 timestamp of acceptance.

Link copied to clipboard
@SerializedName(value = "ip_address")
val ipAddress: String? = null

IP address from which the terms were accepted.

Link copied to clipboard
val token: String? = null

The terms-of-service token that was accepted.