interface CategorySetAssetTagsAction {
    action: "setAssetTags";
    assetId?: string;
    assetKey?: string;
    tags?: string[];
}

Properties

action: "setAssetTags"
assetId?: string

New value to set. Either assetId or assetKey is required.

assetKey?: string

New value to set. Either assetId or assetKey is required.

tags?: string[]

Keywords for categorizing and organizing Assets.

Generated using TypeDoc