Interface JobsApiJobsRetrieveAnnotationsRequest

Request parameters for jobsRetrieveAnnotations operation in JobsApi.

JobsApiJobsRetrieveAnnotationsRequest

interface JobsApiJobsRetrieveAnnotationsRequest {
    action?: "download";
    cloudStorageId?: number;
    filename?: string;
    format?: string;
    id: number;
    location?: JobsRetrieveAnnotationsLocationEnum;
    useDefaultLocation?: boolean;
}

Properties

action?: "download"

Used to start downloading process locally after annotation file has been created

JobsApiJobsRetrieveAnnotations

cloudStorageId?: number

Storage id

JobsApiJobsRetrieveAnnotations

filename?: string

Desired output file name

JobsApiJobsRetrieveAnnotations

format?: string

Desired output format name You can get the list of supported formats at: /server/annotation/formats

JobsApiJobsRetrieveAnnotations

id: number

A unique integer value identifying this job.

JobsApiJobsRetrieveAnnotations

Where need to save downloaded annotation

JobsApiJobsRetrieveAnnotations

useDefaultLocation?: boolean

Use the location that was configured in the task to export annotation

JobsApiJobsRetrieveAnnotations