@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 475 B
TypeScript
/**
* A one character code identifying Money laundering status.
* tag: 481
* @readonly
* @enum {string} (char)
*/
export declare enum MoneyLaunderingStatus {
/** Passed */
Passed = "Y",
/** Not Checked */
NotChecked = "N",
/** Exempt - Below the Limit */
ExemptBelowLimit = "1",
/** Exempt - Client Money Type exemption */
ExemptMoneyType = "2",
/** Exempt - Authorised Credit or financial institution */
ExemptAuthorised = "3"
}