Interface ReadyCheckSession

A live or completed ready check session.

interface ReadyCheckSession {
    color: string;
    completedAt: string;
    expiresAt: string;
    guildId: string;
    id: string;
    initiatorId: string;
    initiatorName: string;
    keyCombo: string;
    message: string;
    name: string;
    participants: ReadyCheckParticipant[];
    source: string;
    startedAt: string;
    status: "active" | "complete";
    target: ReadyCheckTarget;
    templateId: string;
}

Properties

color: string
completedAt: string
expiresAt: string
guildId: string
id: string
initiatorId: string
initiatorName: string
keyCombo: string
message: string
name: string
participants: ReadyCheckParticipant[]
source: string
startedAt: string
status: "active" | "complete"
templateId: string