Interface GatewayEvent_ChatMessageDeleted

interface GatewayEvent_ChatMessageDeleted {
    message: {
        channelId: string;
        deletedAt: string;
        id: string;
        isPrivate?: boolean;
        serverId?: string;
    };
    serverId: string;
}

Properties

Properties

message: {
    channelId: string;
    deletedAt: string;
    id: string;
    isPrivate?: boolean;
    serverId?: string;
}

Type declaration

  • channelId: string

    The ID of the channel

  • deletedAt: string

    The ISO 8601 timestamp that the message was deleted at

  • id: string

    The ID of the message

  • OptionalisPrivate?: boolean
  • OptionalserverId?: string

    The ID of the server

serverId: string

The ID of the server