Interface AutoTestUploadedFileOutput

Output data for uploaded files.

interface AutoTestUploadedFileOutput {
    id: string;
    path: string;
    size: number;
    url: string;
}

Properties

Properties

id: string

The id of the uploaded file.

path: string

The path under which the uploaded file should be stored in the VM.

size: number

The size of the uploaded file, in bytes.

url: string

The presigned URL for downloading the file