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

    Interface VariantSetImageLabelAction

    Sets the label of a Variant's image.

    interface VariantSetImageLabelAction {
        action: "setImageLabel";
        imageUrl: string;
        label?: string;
        staged?: boolean;
    }

    Hierarchy (View Summary)

    Index
    action: "setImageLabel"
    imageUrl: string

    The URL of the image to set the label.

    label?: string

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

    staged?: boolean

    If true, only the staged image is updated. If false, both the current and staged image is updated.