Interface ImageSearchResult

interface ImageSearchResult {
    contentHolder?: Record<string, unknown>;
    contentHolderReference: string;
    contentId: string;
    contentType: string;
    fileId: string;
    fileName: string;
    primaryFileUrl: string;
    score: number;
}

Properties

contentHolder?: Record<string, unknown>
contentHolderReference: string

item:<id>, asset:<id>, or '' when the content has no holder. Captured at index time.

contentId: string
contentType: string
fileId: string
fileName: string
primaryFileUrl: string
score: number

Cosine-derived relevance, 0..1.

Generated using TypeDoc