@qbraid-core
    Preparing search index...

    Interface JobRequest

    Schema for job submission request body. Extends JobBase and adds the 'program' field.

    interface JobRequest {
        deviceQrn: string;
        name?: null | string;
        program: Program;
        runtimeOptions: Record<string, unknown>;
        shots: number;
        tags: Record<string, string | number | boolean>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    deviceQrn: string
    name?: null | string
    program: Program
    runtimeOptions: Record<string, unknown>
    shots: number
    tags: Record<string, string | number | boolean>