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

Properties

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