Type Alias DataFileDeleteRecordResponseV2

type DataFileDeleteRecordResponseV2 = {
    baseName?: string | null;
    createdBy: string;
    deletedDate: string;
    fileMetadataId: string;
    folder?: boolean;
    folderId?: string | null;
    folderPath?: string | null;
    name: string;
    spaceId?: string | null;
    tenantId: string;
    userId?: string | null;
}
Index
baseName?: string | null

The name of the file or folder, not including any folder path prefix.

createdBy: string

The user that deleted this data file or folder.

deletedDate: string

The date that the file was deleted.

fileMetadataId: string

The unique ID of the file or folder that was deleted.

folder?: boolean

True if this is a folder, false if it is a file.

folderId?: string | null

If the file or folder reside in a parent folder, this is the parent folder ID. If the file or folder did not reside in a parent folder, this value is null.

folderPath?: string | null

If the file or folder resided in a parent folder, this is the parent folder path. If the file or folder did not reside in a parent folder, this value is null.

name: string

The full name of the file or folder, including any folder path prefix.

spaceId?: string | null

If not null, the ID of the space that the uploaded file or resideed in. If null, this implies that the item was stored in the user-private area (DataFiles)

tenantId: string

The tenant that this file or folder is scoped to.

userId?: string | null

If the file or folder resided in a user's personal space, the user that this item is scoped to.