Member Junction
    Preparing search index...

    Input to upsertScoringBinding. When bindingId is supplied the existing binding is updated (e.g. to refresh LastScoredAt / LastRowCount after a run); otherwise a new binding is created.

    interface ScoringBindingInput {
        bindingId?: string;
        lastRowCount?: number;
        lastScoredAt?: Date;
        mlModelId: string;
        mode?: ScoringBindingMode;
        recordProcessId: string;
        targetColumn?: string;
        targetEntityId?: string;
    }
    Index

    Properties

    bindingId?: string

    Existing binding id to update; omit to create a new binding.

    lastRowCount?: number

    Monitoring: how many rows the last scoring run covered.

    lastScoredAt?: Date

    Monitoring: when the binding last scored.

    mlModelId: string

    The MJ: ML Models id this binding scores with.

    Scoring mode (defaults to OnDemand).

    recordProcessId: string

    The MJ: Record Processes id that runs the scoring.

    targetColumn?: string

    Target column where the score lands (when write-back/materialized).

    targetEntityId?: string

    Target entity id where scores are written (when write-back/materialized).