Interface JobsApiJobsRetrieveDatasetRequest

Request parameters for jobsRetrieveDataset operation in JobsApi.

JobsApiJobsRetrieveDatasetRequest

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

Properties

action?: "download"

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

JobsApiJobsRetrieveDataset

cloudStorageId?: number

Storage id

JobsApiJobsRetrieveDataset

filename?: string

Desired output file name

JobsApiJobsRetrieveDataset

format: string

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

JobsApiJobsRetrieveDataset

id: number

A unique integer value identifying this job.

JobsApiJobsRetrieveDataset

Where need to save downloaded dataset

JobsApiJobsRetrieveDataset

useDefaultLocation?: boolean

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

JobsApiJobsRetrieveDataset