Type Alias DownloadFileResponse

Download information for the file.

type DownloadFileResponse = {
    fileSize: number;
    lastUpdatedAt: string;
    mimeType: string;
    name: string;
    spaceId: string;
    url: string;
}
Index

Properties

fileSize: number

Size of downloaded file.

lastUpdatedAt: string

Date for last time the file was modified.

mimeType: string

The mimetype of the file.

name: string

The requested file name.

spaceId: string

Space id the file belongs in.

url: string

URL to download the file.