RSX Code Reference
    Preparing search index...

    Interface PolytronTask

    The PolytronTask interface represents an active Polytron processing task.

    interface PolytronTask {
        CreationDate: string;
        Data?: PolytronTaskRequest;
        Error?: string;
        ExecutionTime: number;
        Files?: PolytronTaskFile[];
        ID: string;
        IsExpired?: boolean;
        Name?: string;
        NotificationURL?: string;
        NotifyByEmail?: boolean;
        Object: PolytronTaskObjectInfo;
        Progress: number;
        Status: string;
        TimeoutInSeconds?: number;
        TokenCost: number;
    }
    Index
    CreationDate: string
    Error?: string
    ExecutionTime: number
    ID: string
    IsExpired?: boolean
    Name?: string
    NotificationURL?: string
    NotifyByEmail?: boolean
    Progress: number
    Status: string
    TimeoutInSeconds?: number
    TokenCost: number