interface CategoryChangeAssetNameAction {
    action: "changeAssetName";
    assetId?: string;
    assetKey?: string;
    name: LocalizedString;
}

Properties

action: "changeAssetName"
assetId?: string

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

assetKey?: string

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

New value to set. Must not be empty.

Generated using TypeDoc