Interface WidgetSourceCacheMetadata

interface WidgetSourceCacheMetadata {
    cacheKey: string;
    freshness?: SourceFreshnessContract;
    keyParts: readonly string[];
    metadataCacheable: boolean;
    resultCacheable: boolean;
    status: "computed";
    ttlMs?: number;
}

Properties

cacheKey: string
keyParts: readonly string[]
metadataCacheable: boolean
resultCacheable: boolean
status
ttlMs?: number