Polyman Documentation - v2.2.2
    Preparing search index...

    Interface Problem

    Represents a Polygon problem with metadata and access information. Problem

    interface Problem {
        id: number;
        owner: string;
        name: string;
        deleted: boolean;
        favourite: boolean;
        accessType: AccessType;
        revision: number;
        latestPackage?: number;
        modified: boolean;
    }
    Index

    Properties

    id: number

    Unique problem identifier

    owner: string

    Username of problem owner

    name: string

    Problem name/title

    deleted: boolean

    Whether problem is deleted

    favourite: boolean

    Whether problem is in user's favorites

    accessType: AccessType

    User's access level

    revision: number

    Current problem revision number

    latestPackage?: number

    Latest revision with available package

    modified: boolean

    Whether problem has uncommitted changes