Interface JSONCalendarRSVP

interface JSONCalendarRSVP {
    channelID: string;
    createdAt: null | Date;
    creatorID: string;
    entityID: string;
    guildID: string;
    id: number;
    status: CalendarEventRsvpStatus;
    updatedAt: null | Date;
    updatedBy?: null | string;
}

Hierarchy (view full)

Properties

channelID: string

Calendar channel id.

createdAt: null | Date

When the RSVP was created.

creatorID: string

ID of the user who created this RSVP.

entityID: string

ID of the entity assigned to this Event RSVP.

guildID: string

Guild/server ID.

id: number
status: CalendarEventRsvpStatus

Status of the RSVP

updatedAt: null | Date

When the RSVP was updated.

updatedBy?: null | string

ID of the member who updated the rsvp, if updated.