Type Alias WireEmailEnrichOutcome
WireEmailEnrichOutcome:
| {
bankTransactionId: string;
ffcMemo: string
| null;
status: "ENRICHED";
}
| {
reason: "no-wire-number"
| "no-bank-transaction"
| "ambiguous-match";
status: "UNMATCHED";
}
Type Declaration
- { bankTransactionId: string; ffcMemo: string | null; status: "ENRICHED" }
-
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.