@cfxlabsinc/b2b-services
    Preparing search index...
    WireEmailEnrichOutcome:
        | {
            bankTransactionId: string;
            ffcMemo: string
            | null;
            status: "ENRICHED";
        }
        | {
            reason: "no-wire-number"
            | "no-bank-transaction"
            | "ambiguous-match";
            status: "UNMATCHED";
        }

    What came of trying to attach a wire notification to a bank transaction.

    Type Declaration

    • { bankTransactionId: string; ffcMemo: string | null; status: "ENRICHED" }
      • bankTransactionId: string
      • ffcMemo: string | null

        The customer memo the wire quoted, when it quoted one.

      • status: "ENRICHED"
    • {
          reason: "no-wire-number" | "no-bank-transaction" | "ambiguous-match";
          status: "UNMATCHED";
      }