-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthorityExchangeReason.ts
More file actions
33 lines (33 loc) · 1.09 KB
/
AuthorityExchangeReason.ts
File metadata and controls
33 lines (33 loc) · 1.09 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
/**
* Specifies the reason for the exchange with the national competent authority, as published in an external category purpose code list.
* ISO20022 External Code
* Original name: ExternalAuthorityExchangeReason1Code
*/
export enum AuthorityExchangeReason {
/** Ad hoc request. */
ADHR = "ADHR",
/** Competent Authority for Buyer Branch. */
CABB = "CABB",
/** Competent Authority for Basket Constituant. */
CABC = "CABC",
/** Competent Authority for Buyer Transmitting Firm. */
CABT = "CABT",
/** Competent Authority for Decision Making Branch. */
CADB = "CADB",
/** Competent Authority for Direct Underlying. */
CADU = "CADU",
/** Competent Authority for Executing Branch. */
CAEB = "CAEB",
/** Competent Authority for Instrument. */
CAFI = "CAFI",
/** Competent Authority for Index. */
CAIX = "CAIX",
/** Competent Authority for Membership Branch. */
CAMB = "CAMB",
/** Competent Authority for Seller Branch. */
CASB = "CASB",
/** Competent Authority for Seller Transmitting Firm. */
CAST = "CAST",
/** Competent Authority for Trading Venue. */
CATV = "CATV",
}