interface FilePathFile {
    authorisation_code?: number;
    dataset_id?: string;
    dataset_version?: number;
    file_id?: string;
    file_name: string;
    immutable?: boolean;
    mime_type?: string;
    owner: string;
    stat: FileStat;
}

Properties

authorisation_code?: number

The code obtained from the Account Server

dataset_id?: string

The file's Dataset ID (if the file belongs to a Dataset)

dataset_version?: number

The file's Dataset version (if the file belongs to a Dataset)

file_id?: string

The ID of the file (if the file belongs to a Dataset)

file_name: string

The file name

immutable?: boolean

Whether the file is immutable (read-only)

mime_type?: string

The file's MIME type

owner: string

The file's owner

stat: FileStat