Member Junction
    Preparing search index...

    Interface RecordComparisonCompareOutput

    Output of RecordComparison.Compare — the loaded records plus the per-field delta matrix. Logical success/failure is carried by the wrapping RemoteOpResult (a failed comparison surfaces as Success=false + ErrorMessage), so this payload is the success body only.

    interface RecordComparisonCompareOutput {
        EntityName: string;
        Fields: RecordComparisonFieldDelta[];
        Records: RecordComparisonRecord[];
    }
    Index

    Properties

    EntityName: string

    The registered entity name that was compared.

    The per-field delta matrix. Only fields with at least one non-empty value.

    The loaded records, in input column order.