Interface IAssetFile

interface IAssetFile {
    contentType: string;
    created: string;
    fileID: number;
    filename: string;
    isSynced?: boolean;
    localFilePath?: string;
    parentAssetName: string;
    size: number;
}

Properties

contentType: string
created: string
fileID: number
filename: string
isSynced?: boolean
localFilePath?: string
parentAssetName: string
size: number