interface AssetDraft {
    custom?: CustomFieldsDraft;
    description?: LocalizedString;
    key?: string;
    name: LocalizedString;
    sources: AssetSource[];
    tags?: string[];
}

Properties

Custom Fields defined for the Asset.

description?: LocalizedString

Description of the Asset.

key?: string

User-defined unique identifier for the Asset.

Name of the Asset.

sources: AssetSource[]
tags?: string[]

Keywords for categorizing and organizing Assets.

Generated using TypeDoc