QueueBackup: {
    name: string;
    parentCategoryId: string;
    studentsInQueue: ReadonlyArray<Omit<Helpee, "member" | "queue"> & {
        displayName: string;
        memberId: string;
    }>;
}

Represent the data of 1 HelpQueue

Type declaration

  • name: string

    Queue name

  • parentCategoryId: string

    The channel id of the category that this queue belongs to

  • studentsInQueue: ReadonlyArray<Omit<Helpee, "member" | "queue"> & {
        displayName: string;
        memberId: string;
    }>

    Students in the queue. A list of Helpee objects without the back references

Generated using TypeDoc