ping-identity
    Preparing search index...

    Type Alias ContinueNode

    Node requiring user input — contains a list of collectors.

    type ContinueNode = {
        category?: string;
        collectors: DaVinciCollector[];
        description?: string;
        id?: string;
        input?: Record<string, unknown>;
        name?: string;
        type: "ContinueNode";
        unsupportedFields?: UnsupportedDaVinciField[];
    }
    Index

    Properties

    category?: string

    Form step category from input.form.category.

    Absent when the server payload does not include a form category.

    collectors: DaVinciCollector[]

    Collectors representing the form fields for this step.

    description?: string

    Form step description from input.form.description.

    Absent when the server payload does not include a form description.

    id?: string

    Connector ID from the server payload (input["id"]).

    Absent when the native ContinueNode instance is not a Connector subtype (rare in practice; the DaVinci SDK always constructs Connector instances).

    input?: Record<string, unknown>

    Full server input payload for this node.

    Parity with Journey's ContinueNode.input. Useful for integration collectors that need the full server context beyond the typed collector projection.

    name?: string

    Form step name from input.form.name.

    Absent when the server payload does not include a form name.

    type: "ContinueNode"
    unsupportedFields?: UnsupportedDaVinciField[]

    Form fields the native SDK skipped because their type was not registered.

    Populated on both iOS and Android when the native SDK drops one or more fields (see UnsupportedDaVinciField). Omitted when every server field has a matching collector.