ping-identity
    Preparing search index...

    Type Alias LabelCollector

    Label (read-only content) collector.

    Does not extend BaseCollectorLabelCollector does not implement FieldCollector in the native SDK and therefore has no label or required.

    richContent is absent from the 2.0.1 iOS/Android SDK sources (LabelCollector has only key and content). Add it when the SDK version that includes it is adopted.

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

    Properties

    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.

    type: "LABEL"