Interface Problem

interface Problem {
    adminUrl: null | string;
    boundTopicId: unknown;
    challengeQuestion: ChallengeQuestion;
    codeSnippets: CodeSnippet[];
    companyTagStats: unknown;
    content: string;
    contributors: unknown[];
    difficulty: ProblemDifficulty;
    dislikes: number;
    enableDebugger: boolean;
    enableRunCode: boolean;
    enableTestMode: boolean;
    envInfo: string;
    exampleTestcases: string;
    hints: string[];
    isLiked: null | boolean;
    isPaidOnly: boolean;
    judgeType: string;
    judgerAvailable: boolean;
    libraryUrl: null | string;
    likes: number;
    metaData: string;
    mysqlSchemas: unknown[];
    note: null | string;
    questionFrontendId: string;
    questionId: string;
    sampleTestCase: string;
    similarQuestions: string;
    solution: OfficialSolution;
    stats: string;
    status: unknown;
    title: string;
    titleSlug: string;
    topicTags: TopicTag[];
    translatedContent: null | string;
    translatedTitle: null | string;
}

Properties

adminUrl: null | string
boundTopicId: unknown
challengeQuestion: ChallengeQuestion
codeSnippets: CodeSnippet[]
companyTagStats: unknown
content: string
contributors: unknown[]
difficulty: ProblemDifficulty
dislikes: number
enableDebugger: boolean
enableRunCode: boolean
enableTestMode: boolean
envInfo: string
exampleTestcases: string
hints: string[]
isLiked: null | boolean
isPaidOnly: boolean
judgeType: string
judgerAvailable: boolean
libraryUrl: null | string
likes: number
metaData: string
mysqlSchemas: unknown[]
note: null | string

null if not logged in

questionFrontendId: string
questionId: string
sampleTestCase: string
similarQuestions: string
stats: string
status: unknown
title: string
titleSlug: string
topicTags: TopicTag[]
translatedContent: null | string
translatedTitle: null | string

Generated using TypeDoc