Member Junction
    Preparing search index...

    Interface ExistingGeoCodeInfo

    Lightweight summary of an existing RecordGeoCode row, used by bulk lookup to eliminate per-record SQL queries during batch geocoding.

    The map is keyed by RecordID|LocationType for O(1) lookup.

    interface ExistingGeoCodeInfo {
        ID: string;
        LocationType: string;
        RecordID: string;
        RetryCount: number;
        SourceFieldHash: string;
        Status: string;
    }
    Index

    Properties

    ID: string
    LocationType: string
    RecordID: string
    RetryCount: number

    Needed to tell a transient failure from a settled one — see PERMANENT_SKIP_RETRY_COUNT. Without it, a batch caller cannot decide whether a failed row is worth another attempt, and re-attempts every one of them on every pass.

    SourceFieldHash: string
    Status: string