Represents a job status object used in MegaScript.

interface JobStatus {
    CustomStatus: string;
    Id: number;
    Info: string;
    SetInfo: ((info: string) => boolean);
    Status: string;
}

Properties

CustomStatus: string

Gets the custom status information.

Id: number

Gets the ID of the print order history.

Info: string

Gets information associated with the job status.

SetInfo: ((info: string) => boolean)

Sets information for the job status.

Type declaration

    • (info): boolean
    • Parameters

      • info: string

        The information to set. Returns true if the operation was successful, false otherwise.

      Returns boolean

Status: string

Gets the status type as a string.