Interface ContestSummaryListResponseDTO

interface ContestSummaryListResponseDTO {
    company: EntityCompanySummaryListResponseDTO;
    isEndless: boolean;
    isFrozenTime: boolean;
    isFuture: boolean;
    isGlobal: boolean;
    isLive: boolean;
    isPast: boolean;
    isQuietTime: boolean;
    key: string;
    name: string;
    owner: UserCompanyBasicInfoResponseDTO;
    settings: Pick<ContestSettings, "startTimestamp" | "endTimestamp" | "penalty" | "frozenTimestamp" | "quietTimestamp">;
    tags: string[];
    totalContestants: number;
    user: ContestUserType;
}

Hierarchy (view full)

Properties

isEndless: boolean
isFrozenTime: boolean
isFuture: boolean
isGlobal: boolean
isLive: boolean
isPast: boolean
isQuietTime: boolean
key: string
name: string
settings: Pick<ContestSettings, "startTimestamp" | "endTimestamp" | "penalty" | "frozenTimestamp" | "quietTimestamp">
tags: string[]
totalContestants: number