RichTextCollector - Display-only collector for LABEL fields that carry inline link replacements. Extends NoValueCollectorBase with the plain-text content fallback and a structured richContent payload (template + normalized replacements). Use this type — not ReadOnlyCollector — when you need to render {{key}} tokens as anchor elements.

interface RichTextCollector {
    category: "NoValueCollector";
    error: null | string;
    id: string;
    name: string;
    output: { key: string; label: string; type: string } & {
        content: string;
        richContent: CollectorRichContent;
    };
    type: "RichTextCollector";
}

Hierarchy (View Summary)

Properties

category: "NoValueCollector"
error: null | string
id: string
name: string
output: { key: string; label: string; type: string } & {
    content: string;
    richContent: CollectorRichContent;
}
type: "RichTextCollector"