PhoneVerification

data class PhoneVerification(val id: String?, val verificationObject: String?, val accountId: String?, val status: String?, val created: Int?, val updated: Int?, val livemode: Boolean?)

Represents a phone number verification attempt for an account.

Constructors

Link copied to clipboard
constructor(id: String?, verificationObject: String?, accountId: String?, status: String?, created: Int?, updated: Int?, livemode: Boolean?)

Properties

Link copied to clipboard
@SerializedName(value = "account_id")
val accountId: String?

ID of the account this verification belongs to.

Link copied to clipboard
val created: Int?

Unix timestamp of creation.

Link copied to clipboard
val id: String?

Unique verification identifier.

Link copied to clipboard

true when the verification exists in the live environment.

Link copied to clipboard

Current status of the verification attempt.

Link copied to clipboard
val updated: Int?

Unix timestamp of the last update.

Link copied to clipboard
@SerializedName(value = "object")
val verificationObject: String?

The API object type string (always "phone_verification").