interface RemoteFile {
    $id: string;
    filename: string;
    last_modified_time: string;
    size: number;
}

Properties

$id: string

The identifier of the file.

filename: string

The filename of the file.

last_modified_time: string

The last modified time of the file.

size: number

The size of the file in bytes.