@gradientedge/commercetools-utils
    Preparing search index...

    Interface VariantSetAssetTagsAction

    Sets the tags of an existing Asset on a Variant. The Asset to update must be specified using either assetId or assetKey.

    interface VariantSetAssetTagsAction {
        action: "setAssetTags";
        assetId?: string;
        assetKey?: string;
        staged?: boolean;
        tags?: string[];
    }

    Hierarchy (View Summary)

    Index
    action: "setAssetTags"
    assetId?: string

    The id of the Asset to update.

    assetKey?: string

    The key of the Asset to update.

    staged?: boolean

    Whether only the staged Asset is updated. If false, both the current and staged Asset is updated.

    tags?: string[]

    Keywords for categorizing and organizing Assets.