Set or remove the key of an Asset.

interface CategorySetAssetKeyAction {
    action: "setAssetKey";
    assetId: string;
    assetKey?: string;
}

Properties

action: "setAssetKey"
assetId: string

Value to set.

assetKey?: string

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

Generated using TypeDoc