Interface Message

interface Message {
    channel_id: number;
    content: string;
    is_action: boolean;
    message_id: number;
    sender: User;
    sender_id: number;
    timestamp: Date;
    type: string;
    uuid?: null | string;
}

Properties

channel_id: number
content: string
is_action: boolean
message_id: number
sender: User
sender_id: number
timestamp: Date
type: string

Like "action", "markdown", "plain"

uuid?: null | string