interface JSONDoc {
    channelID: string;
    content: string;
    createdAt: Date;
    editedTimestamp: null | Date;
    guildID: string;
    id: number;
    memberID: string;
    mentions: APIMentions;
    name: string;
    updatedBy: null | string;
}

Hierarchy

Properties

channelID: string

ID of the 'docs' channel.

content: string

Content of the doc

createdAt: Date

When the doc has been created.

editedTimestamp: null | Date

When the doc has been updated.

guildID: string

Guild/server id

id: number
memberID: string

ID of the member who created this doc.

mentions: APIMentions

Doc mentions

name: string

Doc name

updatedBy: null | string

ID of the member who updated the doc.