Type alias CalendarEventRsvpPayload

CalendarEventRsvpPayload: {
    calendarEventId: number;
    channelId: string;
    createdAt: string;
    createdBy: string;
    serverId: string;
    status: "going" | "maybe" | "declined" | "invited" | "waitlisted" | "not responded";
    updatedAt?: string;
    updatedBy?: string;
    userId: string;
}

Type declaration

  • calendarEventId: number

    The ID of the calendar event

  • channelId: string

    The ID of the channel

  • createdAt: string

    The ISO 8601 timestamp that the RSVP was created at

  • createdBy: string

    The ID of the user who created this RSVP

  • serverId: string

    The ID of the server

  • status: "going" | "maybe" | "declined" | "invited" | "waitlisted" | "not responded"

    The status of the RSVP

  • Optional updatedAt?: string

    The ISO 8601 timestamp that the RSVP was updated at, if relevant

  • Optional updatedBy?: string

    The ID of the user who updated this RSVP

  • userId: string

    The ID of the user

Generated using TypeDoc