⚠️ Internal: This API is not publically exported by the package.

Parameters for getting recommendations using the 'item_to_items' recommendation type.

interface ItemToItemsRecommendationParams {
    cursor?: string;
    filters?: FilterInline[];
    itemId: string;
    maxResults?: number;
    reranking?: Reranking[];
    scenario?: string;
    sessionId?: string;
    skipDefaultScenario?: boolean;
    userId?: string;
}

Properties

cursor?: string
filters?: FilterInline[]
itemId: string
maxResults?: number
reranking?: Reranking[]
scenario?: string
sessionId?: string
skipDefaultScenario?: boolean
userId?: string