-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportingSource.ts
More file actions
29 lines (29 loc) · 1.3 KB
/
ReportingSource.ts
File metadata and controls
29 lines (29 loc) · 1.3 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 reporting source, as published in an external reporting source code list.
* ISO20022 External Code
* Original name: ExternalReportingSource1Code
*/
export enum ReportingSource {
/** Statement or Report is based on accounting data. */
ACCT = "ACCT",
/** An account reconciliation system that provides full reconciliation that usually addresses checks */
ARPF = "ARPF",
/** An account reconciliation system that provides partial reconciliation that usually addresses checks */
ARPP = "ARPP",
/** A sub-application that reports presentment totals */
CTDB = "CTDB",
/** Statement or Report is based on custody data. */
CUST = "CUST",
/** Cash or deposit accounting system */
DEPT = "DEPT",
/** Deposit system that reports what has been collected from various financial institutions */
DPCS = "DPCS",
/** Processing system that captures and reports check data in a lockbox environment. */
LKBX = "LKBX",
/** Transaction submitted directly from PMI (Payment Market Infrastructure back-office system). */
MIBO = "MIBO",
/** Transactions submitted directly from participant / PSO (Payment System Operator) applications. */
PFRE = "PFRE",
/** A system that reports consolidated remittance information obtained from various , i.e., ACH, wires, lockbox, etc. */
RCPT = "RCPT",
}