@qbraid-core
    Preparing search index...

    Interface RuntimeJob

    Schema for runtime job model - base job information. Extends JobBase (not JobRequest) so it does not include 'program' field.

    interface RuntimeJob {
        batchJobQrn?: null | string;
        cost?: null | number;
        deviceQrn: string;
        estimatedCost: number;
        experimentType: ExperimentType;
        jobQrn: string;
        metadata: Record<string, unknown>;
        name?: null | string;
        provider: Provider;
        queuePosition?: null | number;
        runtimeOptions: Record<string, unknown>;
        shots: number;
        status: JobStatus;
        statusMsg?: null | string;
        tags: Record<string, string | number | boolean>;
        timeStamps?: null | TimeStampsV1;
        vendor: Vendor;
    }

    Hierarchy (View Summary)

    Index

    Properties

    batchJobQrn?: null | string
    cost?: null | number
    deviceQrn: string
    estimatedCost: number
    experimentType: ExperimentType
    jobQrn: string
    metadata: Record<string, unknown>
    name?: null | string
    provider: Provider
    queuePosition?: null | number
    runtimeOptions: Record<string, unknown>
    shots: number
    status: JobStatus
    statusMsg?: null | string
    tags: Record<string, string | number | boolean>
    timeStamps?: null | TimeStampsV1
    vendor: Vendor