Interface IAssociatedFileCopyResults

Results of fetching and copying a file associated with an item.

interface IAssociatedFileCopyResults {
    copiedToDestination?: boolean;
    fetchedFromSource: boolean;
    file?: File;
    filename: string;
    folder: string;
    mimeType?: string;
    type?: EFileType;
    url?: string;
}

Hierarchy (view full)

Properties

copiedToDestination?: boolean

Status of copying item to destination; undefined if fetchedFromSource is false

fetchedFromSource: boolean

Status of fetching item from source

file?: File

File holding a resource, metadata, or thumbnail of an item or group

filename: string

Resource's filename

folder: string

Resource's "folder"--the prefix before the filename

mimeType?: string

The mime type of the file

type?: EFileType

An internal classification of the type of file: data, metadata, resource

url?: string

URL where a resource, metadata, or thumbnail of an item or group can be found