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

    Interface ProductTailoringInStoreDraft

    Contains all the tailored information of a Product for a specific Store.

    interface ProductTailoringInStoreDraft {
        attributes?: ProductTailoringAttribute[];
        description?: LocalizedString;
        key?: string;
        metaDescription?: LocalizedString;
        metaKeywords?: LocalizedString;
        metaTitle?: LocalizedString;
        name?: LocalizedString;
        product: ProductResourceIdentifier;
        publish?: boolean;
        slug?: LocalizedString;
        variants?: ProductVariantTailoringDraft[];
    }
    Index

    Properties

    Attributes of the tailored Product. If provided, these Attributes are selectively merged into the attributes of the corresponding Product. If the Product contains an Attribute with the same name, then its value is overwritten. Otherwise, the Attribute and its value are added to the Product.

    description?: LocalizedString

    Tailored description of the Product.

    key?: string

    User-defined unique identifier of the ProductTailoring.

    metaDescription?: LocalizedString

    Tailored description of the Product that is used in search engine.

    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.

    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}.

    Tailored Variants of the Product.