interface AssetUploadArguments {
    data: object;
    file: File;
    filename: string;
    folder: Asset;
    id: number;
    name: string;
    preload: boolean;
    sourceAssetId: number;
    tags: string[];
    type: string;
}

Properties

data: object

The asset data. This depends on the asset type. See Asset for asset data depending on the type.

file: File

The file being uploaded.

filename: string

The filename of the uploaded file.

folder: Asset

The parent folder asset where the asset should be placed.

id: number

If an asset id is specified then this asset will be updated instead of creating a new asset.

name: string

The name of the asset.

preload: boolean

Whether to preload the asset. Defaults to true.

sourceAssetId: number

The id of the source asset.

tags: string[]

The tags of the asset.

type: string

The type of the asset we are uploading. See Asset for available asset types.