-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChannel.ts
More file actions
33 lines (33 loc) · 1.01 KB
/
Channel.ts
File metadata and controls
33 lines (33 loc) · 1.01 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 external submission or presentation channel 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: ExternalChannel1Code
*/
export enum Channel {
/** Delivery by courier. */
COUR = "COUR",
/** Transmission by e-mail. */
EMAL = "EMAL",
/** Transmission by fax. */
FAXI = "FAXI",
/** Delivery by messenger. */
MESS = "MESS",
/** Delivery by postal service. */
POST = "POST",
/** Delivery by registered mail services. */
REGM = "REGM",
/** Transfer via secure e-mail. */
SEMA = "SEMA",
/** Transmission by SWIFTNet FileAct. */
SWFA = "SWFA",
/** Transmission by SWIFTNet InterAct. */
SWIA = "SWIA",
/** Transmission by SWIFT (FIN). */
SWMT = "SWMT",
/** Transmission by SWIFTNet. */
SWMX = "SWMX",
/** Transmission by telecommunications service. */
TELE = "TELE",
/** Available via Web upload/download */
WEBM = "WEBM",
}