-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvestigationInstrument.ts
More file actions
29 lines (29 loc) · 1.04 KB
/
InvestigationInstrument.ts
File metadata and controls
29 lines (29 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* Specifies the type of instrument or product to which the investigation refers, as published in an external investigation instrument code set.
* ISO20022 External Code
* Original name: ExternalInvestigationInstrument1Code
*/
export enum InvestigationInstrument {
/** Investigation is related to an ACH or mass payment. */
ACHP = "ACHP",
/** Investigation is related to a card transaction. */
CARD = "CARD",
/** Investigation is related to a cheque. */
CHQB = "CHQB",
/** Investigation is related to a direct debit. */
DDTP = "DDTP",
/** Investigation is related to a draft. */
DRFT = "DRFT",
/** Investigation is related to an instant credit transfer. */
INST = "INST",
/** Other underlying instrument. */
OTHR = "OTHR",
/** Investigation is related to a request to pay. */
SRTP = "SRTP",
/** Investigation is related to a statement entry. */
STAT = "STAT",
/** Investigation is related to a wire/high value payment. */
URGP = "URGP",
/** Investigation is related to a cross border payment. */
XBCT = "XBCT",
}