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

    Interface ProductTailoringDraft

    Contains the information to be tailored for a Product.

    interface ProductTailoringDraft {
        attributes?: ProductTailoringAttribute[];
        description?: LocalizedString;
        key?: string;
        metaDescription?: LocalizedString;
        metaKeywords?: LocalizedString;
        metaTitle?: LocalizedString;
        name?: LocalizedString;
        product: ProductResourceIdentifier;
        publish?: boolean;
        slug?: LocalizedString;
        store: StoreResourceIdentifier;
        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 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.

    ResourceIdentifier of the Product the ProductTailoring belongs to.

    publish?: boolean

    Set to true to publish the ProductTailoring immediately. Otherwise, the tailored product information is just staged.

    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.

    Tailored Variants of the Product.