Interface DucIssueMessage

A single message in an issue thread.

interface DucIssueMessage {
    author: Actor;
    content: string;
    createdAt: number;
    deletedAt?: number;
    editedAt?: number;
    id: string;
    reactions?: Record<string, string[]>;
    replyToId?: string;
}

Properties

author: Actor
content: string
createdAt: number
deletedAt?: number
editedAt?: number
id: string
reactions?: Record<string, string[]>

Reactions keyed by emoji string.

replyToId?: string

Id of the message this message is responding to, if any.