Contains all the tailored data of a Product.

interface ProductTailoringData {
    description?: LocalizedString;
    metaDescription?: LocalizedString;
    metaKeywords?: LocalizedString;
    metaTitle?: LocalizedString;
    name?: LocalizedString;
    slug?: LocalizedString;
    variants?: ProductVariantTailoring[];
}

Properties

description?: LocalizedString

Tailored description of the Product.

metaDescription?: LocalizedString

Tailored description of the Product that is used by search engines.

metaKeywords?: LocalizedString

Tailored keywords related to the Product that are used by search engines.

metaTitle?: LocalizedString

Tailored title of the Product that is used by search engines.

Tailored name of the Product.

User-defined identifier used in a deep-link URL for the ProductTailoring. Matches the pattern [a-zA-Z0-9_\\-]{2,256}.

Tailored Variants of the Product.