ImageCollector - Display-only collector for IMAGE fields. Extends the generic NoValueCollectorBase with the image URL (imageUrl), description (alt text), and an optional hyperlink URL (hyperlinkUrl).

interface ImageCollector {
    category: "NoValueCollector";
    error: null | string;
    id: string;
    name: string;
    output: { key: string; label: string; type: string } & {
        description: string;
        hyperlinkUrl?: string;
        imageUrl: string;
    };
    type: "ImageCollector";
}

Hierarchy (View Summary)

Properties

category: "NoValueCollector"
error: null | string
id: string
name: string
output: { key: string; label: string; type: string } & {
    description: string;
    hyperlinkUrl?: string;
    imageUrl: string;
}
type: "ImageCollector"