interface ProductSearchResult {
    id: string;
    matchingVariants?: ProductSearchMatchingVariants;
    productProjection?: ProductProjection;
}

Properties

id: string

id of the Product that matches the search query.

Information about which Product Variants match the search query. Only present if markMatchingVariants is set to true in the ProductSearchRequest.

productProjection?: ProductProjection

Projected data of the Product with id. Only present if data integration with Product Projection parameters is requested.