-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgreementType.ts
More file actions
75 lines (75 loc) · 2.68 KB
/
AgreementType.ts
File metadata and controls
75 lines (75 loc) · 2.68 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* Name of the identification scheme, in a coded form as published in an external list.
* ISO20022 External Code
* Original name: ExternalAgreementType1Code
*/
export enum AgreementType {
/** Australian Masters Securities Lending Agreement (AMSLA). */
AUSL = "AUSL",
/** Bilateral agreement. */
BIAG = "BIAG",
/** Investment Industry Regulatory Organization of Canada (IIROC) Repurchase/Reverse Repurchase Transaction Agreement. */
CARA = "CARA",
/** FIA-ISDA Cleared Derivatives Execution Agreement. */
CDEA = "CDEA",
/** Swiss Master Agreement. */
CHMA = "CHMA",
/** Swiss Master Repurchase Agreement. */
CHRA = "CHRA",
/** Contrato Marco de Operaciones Financieras. */
CMOP = "CMOP",
/** China Bond Repurchase Master Agreement. */
CNBR = "CNBR",
/** CSD bilateral agreement. */
CSDA = "CSDA",
/** German Master Agreement. */
DEMA = "DEMA",
/** Deutscher Rahmenvertrag für Wertpapierdarlehen. */
DERD = "DERD",
/** Deutscher Rahmenvertrag für Wertpapierpensionsgeschäfte . */
DERP = "DERP",
/** Deutscher Rahmenvertrag für Finanztermingeschäfte (DRV). */
DERV = "DERV",
/** EFET Master Agreement. */
EFMA = "EFMA",
/** Contrato Marco de compraventa y Reporto de valores. */
ESRA = "ESRA",
/** European Master Agreement. */
EUMA = "EUMA",
/** FBF Master Agreement related to transactions on forward financial instruments. */
FMAT = "FMAT",
/** FOA Professional Client Agreement. */
FPCA = "FPCA",
/** Convention-Cadre Relative aux Operations de Pensions Livrees. */
FRFB = "FRFB",
/** Gilt Edged Stock Lending Agreement (GESLA). */
GESL = "GESL",
/** Global Master Repurchase Agreement. */
GMRA = "GMRA",
/** Global Master Securities Lending Agreement. */
GMSL = "GMSL",
/** Islamic Derivative Master Agreement. */
IDMA = "IDMA",
/** International Swaps and Derivatives Association Agreement. */
ISDA = "ISDA",
/** Japanese Master Agreement on Lending Transaction of Bonds. */
JPBL = "JPBL",
/** Japanese Master Agreement on the Transaction with Repurchase Agreement of the Bonds. */
JPBR = "JPBR",
/** Japanese Master Agreement on the Borrowing and Lending Transactions of Share Certificates. */
JPSL = "JPSL",
/** Korea Financial Investment Association (KOFIA) Standard Repurchase Agreement. */
KRRA = "KRRA",
/** Korean Securities Lending Agreement (KOSLA). */
KRSL = "KRSL",
/** Master Equity and Fixed Interest Stock Lending Agreement (MEFISLA). */
MEFI = "MEFI",
/** Master Repurchase Agreement. */
MRAA = "MRAA",
/** Master Securities Loan Agreement. */
MSLA = "MSLA",
/** Overseas Securities Lending Agreement. */
OSLA = "OSLA",
/** Other type of master agreement. */
OTHR = "OTHR",
}