Interface TasksApiTasksRetrieveAnnotationsRequest

Request parameters for tasksRetrieveAnnotations operation in TasksApi.

TasksApiTasksRetrieveAnnotationsRequest

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

Properties

action?: "download"

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

TasksApiTasksRetrieveAnnotations

cloudStorageId?: number

Storage id

TasksApiTasksRetrieveAnnotations

filename?: string

Desired output file name

TasksApiTasksRetrieveAnnotations

format?: string

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

TasksApiTasksRetrieveAnnotations

id: number

A unique integer value identifying this task.

TasksApiTasksRetrieveAnnotations

Where need to save downloaded dataset

TasksApiTasksRetrieveAnnotations

useDefaultLocation?: boolean

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

TasksApiTasksRetrieveAnnotations