Type Alias DataFileUploadResponse

type DataFileUploadResponse = {
    actions: DataFilePermission[];
    appId?: string;
    baseName?: string;
    contentUpdatedDate?: string;
    createdDate: string;
    folder?: boolean;
    folderId?: string;
    folderPath?: string;
    folderStats: FolderStatsResponse;
    id: string;
    modifiedDate?: string;
    name: string;
    ownerId: string;
    qri?: string;
    size: number;
    spaceId?: string;
}
Index

Properties

The CRUD actions that are allowed on the given data file.

appId?: string
baseName?: string
contentUpdatedDate?: string
createdDate: string
folder?: boolean
folderId?: string

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

folderPath?: string

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

folderStats: FolderStatsResponse
id: string
modifiedDate?: string
name: string
ownerId: string
qri?: string
size: number
spaceId?: string