Interface ProjectsApiProjectsRetrieveAnnotationsRequest

Request parameters for projectsRetrieveAnnotations operation in ProjectsApi.

ProjectsApiProjectsRetrieveAnnotationsRequest

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

Properties

action?: "download"

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

ProjectsApiProjectsRetrieveAnnotations

cloudStorageId?: number

Storage id

ProjectsApiProjectsRetrieveAnnotations

filename?: string

Desired output file name

ProjectsApiProjectsRetrieveAnnotations

format: string

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

ProjectsApiProjectsRetrieveAnnotations

id: number

A unique integer value identifying this project.

ProjectsApiProjectsRetrieveAnnotations

Where need to save downloaded dataset

ProjectsApiProjectsRetrieveAnnotations

useDefaultLocation?: boolean

Use the location that was configured in project to export annotation

ProjectsApiProjectsRetrieveAnnotations