Interface UpsertContestDTO

interface UpsertContestDTO {
    description: string;
    members: EntityMembersDTO;
    name: string;
    problems: {
        [key: string]: UpsertContestProblemDTO;
    };
    settings: Omit<ContestSettings, "locked">;
    tags: string[];
}

Hierarchy

Properties

description: string
name: string
problems: {
    [key: string]: UpsertContestProblemDTO;
}

Type declaration

settings: Omit<ContestSettings, "locked">
tags: string[]