interface JobListParams {
    after?: string;
    limit?: number;
    metadata?: null | {
        [key: string]: string;
    };
}

Hierarchy (view full)

Properties

after?: string
limit?: number
metadata?: null | {
    [key: string]: string;
}

Optional metadata filter. To filter, use the syntax metadata[k]=v. Alternatively, set metadata=null to indicate no metadata.