Interface ContestDataResponseDTO

interface ContestDataResponseDTO {
    clarifications: ContestClarificationType[];
    company: EntityCompanySummaryListResponseDTO;
    description: string;
    isEndless: boolean;
    isFrozenTime: boolean;
    isFuture: boolean;
    isGlobal: boolean;
    isLive: boolean;
    isPast: boolean;
    isQuietTime: boolean;
    key: string;
    members: EntityMembersWithTimestampsResponseDTO;
    name: string;
    owner: UserCompanyBasicInfoResponseDTO;
    problems: {
        [key: string]: ContestProblemDataResponseDTO;
    };
    settings: ContestSettings;
    state: EntityState;
    tags: string[];
    totalContestants: number;
    user: ContestUserType;
}

Hierarchy

Properties

clarifications: ContestClarificationType[]
description: string
isEndless: boolean
isFrozenTime: boolean
isFuture: boolean
isGlobal: boolean
isLive: boolean
isPast: boolean
isQuietTime: boolean
key: string
name: string
problems: {
    [key: string]: ContestProblemDataResponseDTO;
}

Type declaration

settings: ContestSettings
tags: string[]
totalContestants: number