A handle for an asset from the Asset Library.

interface Asset {
    assetId: string;
    assetName: string;
    assetType: AssetType;
    resources: Resource[];
}

Properties

assetId: string

The id of the asset.

assetName: string

The name of the asset.

assetType: AssetType

The type of the asset.

resources: Resource[]

A handle for the resources contained in the asset that can be downloaded.