ReadOnlyCollector - Display-only collector for plain LABEL fields. Extends NoValueCollectorBase with the plain-text content from the field.

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

Hierarchy (View Summary)

Properties

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