fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 576 B
TypeScript
/**
* A one character code identifying Money laundering status.
* - Tag: 481
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const MoneyLaunderingStatus: Readonly<{
/** Passed */
readonly Passed: 'Y';
/** Not Checked */
readonly NotChecked: 'N';
/** Exempt - Below the Limit */
readonly ExemptBelowLimit: '1';
/** Exempt - Client Money Type exemption */
readonly ExemptMoneyType: '2';
/** Exempt - Authorised Credit or financial institution */
readonly ExemptAuthorised: '3';
}>;