interface Asset {
    custom?: CustomFields;
    description?: LocalizedString;
    id: string;
    key?: string;
    name: LocalizedString;
    sources: AssetSource[];
    tags?: string[];
}

Properties

custom?: CustomFields

Custom Fields defined for the Asset.

description?: LocalizedString

Description of the Asset.

id: string

Unique identifier of the Asset.

key?: string

User-defined unique identifier of the Asset.

Name of the Asset.

sources: AssetSource[]
tags?: string[]

Keywords for categorizing and organizing Assets.

Generated using TypeDoc