Interface JSONCalendarEventComment

interface JSONCalendarEventComment {
    channelID: string;
    content: string;
    createdAt: Date;
    data: APICalendarEventComment;
    eventID: number;
    id: number;
    memberID: string;
    updatedAt: null | Date;
}

Hierarchy

  • JSONBase<number>
    • JSONCalendarEventComment

Properties

channelID: string

The ID of the channel containing this comment.

content: string

The content of the comment.

createdAt: Date

The ISO 8601 timestamp that this comment was created at.

Raw data

eventID: number

The ID of the event containing this comment. (parent)

id: number
memberID: string

The ID of the member who sent this comment.

updatedAt: null | Date

The ISO 8601 timestamp that this comment was updated at.