-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNarrativeType.ts
More file actions
21 lines (21 loc) · 878 Bytes
/
NarrativeType.ts
File metadata and controls
21 lines (21 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* Specifies the external narrative type code in the format of a character string with a maximum length of 4 characters. The list of valid codes is an external code list published separately.
* ISO20022 External Code
* Original name: ExternalNarrativeType1Code
*/
export enum NarrativeType {
/** Narrative text describing the additional terms and conditions. */
ADDI = "ADDI",
/** Narrative text describing the charge details. */
CHAR = "CHAR",
/** Narrative text describing the drawing details. */
DRAW = "DRAW",
/** Narrative text describing the assignment of proceeds terms and conditions. */
PRAS = "PRAS",
/** Narrative text describing the terms of effectiveness. */
TEFF = "TEFF",
/** Narrative text describing the transfer terms and conditions. */
TRNF = "TRNF",
/** Narrative text describing the terms of variation. */
TVAR = "TVAR",
}