interface CategorySetAssetDescriptionAction {
    action: "setAssetDescription";
    assetId?: string;
    assetKey?: string;
    description?: LocalizedString;
}

Properties

action: "setAssetDescription"
assetId?: string

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

assetKey?: string

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

description?: LocalizedString

Value to set. If empty, any existing value will be removed.

Generated using TypeDoc