Type alias MessageData

MessageData: {
    application_id?: string;
    attachments: AttachmentData[];
    author: UserData;
    channel_id: Snowflake;
    edited_timestamp: string | undefined;
    embeds: Embed[];
    id: Snowflake;
    mention_everyone: boolean;
    mentions: UserData[];
    mentions_roles: string[];
    pinned?: boolean;
    position?: number;
    timestamp: string;
    webhook_id?: string;
} & SharedMessageData

Generated using TypeDoc