interface RecommendationsState {
    error: null | CommerceAPIErrorStatusResponse;
    headline: string;
    isLoading: boolean;
    productId?: string;
    products: Product[];
    responseId: string;
}

Properties

error: null | CommerceAPIErrorStatusResponse
headline: string
isLoading: boolean
productId?: string
products: Product[]
responseId: string