ping-identity
    Preparing search index...

    Type Alias LabelCollector

    Label (read-only content) collector.

    Does not extend BaseCollector: LabelCollector does not implement FieldCollector in the native SDK and therefore has no label, required, or mutable value. Render content when richContent is absent; otherwise, use its template content and named replacements, including link metadata.

    type LabelCollector = {
        content: string;
        key: string;
        raw?: Record<string, unknown>;
        richContent?: RichContent;
        type: "LABEL";
    }
    Index

    Properties

    content: string

    Raw display content for this label.

    key: string

    Unique collector key identifying this field in the form.

    raw?: Record<string, unknown>

    Raw server-side field JSON from node.input.form.components.fields[].

    Populated by the native mapper.

    richContent?: RichContent

    Optional rich content with template text and named link replacements.

    Present when the server includes a richContent object in the field definition.

    type: "LABEL"