VerifyResponseMessage

@Serializable
data class VerifyResponseMessage(val code: String, val message: String, val status: MessageStatus)

Represents a response message from the verification process.

This data class is used to encapsulate the details of a message returned during a verification operation, including a code, a human-readable message, and the status of the message.

Constructors

Link copied to clipboard
constructor(code: String, message: String, status: MessageStatus)

Properties

Link copied to clipboard

A string code identifying the type of message or error.

Link copied to clipboard

A human-readable string message providing more detail.

Link copied to clipboard

The MessageStatus indicating the severity or type of the message.