Interface MessageResponse

interface MessageResponse {
    error?: string;
    message?: string;
    messageId: string;
    status: "read" | "sent" | "delivered" | "failed";
    timestamp?: string;
}

Hierarchy (View Summary)

Properties

error?: string
message?: string
messageId: string
status: "read" | "sent" | "delivered" | "failed"
timestamp?: string