Contains all the tailored data of a Product.

interface ProductTailoringDraft {
    description?: LocalizedString;
    key?: string;
    metaDescription?: LocalizedString;
    metaKeywords?: LocalizedString;
    metaTitle?: LocalizedString;
    name?: LocalizedString;
    product: ProductResourceIdentifier;
    publish?: boolean;
    slug?: LocalizedString;
    store: StoreResourceIdentifier;
}

Properties

description?: LocalizedString

Tailored description of the Product.

key?: string

User-defined unique identifier of the ProductTailoring.

metaDescription?: LocalizedString

Tailored description of the Product used by external search engines for improved search engine performance.

metaKeywords?: LocalizedString

Tailored keywords related to the Product used by external search engines for improved search engine performance.

metaTitle?: LocalizedString

Tailored title of the Product used by external search engines for improved search engine performance.

Tailored name of the Product.

ResourceIdentifier of the Product the ProductTailoring belongs to.

publish?: boolean

If true, the ProductTailoring is published immediately.

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

The Store to which the ProductTailoring belongs.