UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 474 B
/** * Registration status as returned by the broker or (for CIV) the fund manager: * - Tag: 506 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const RegistStatus: Readonly<{ /** Accepted */ readonly Accepted: 'A'; /** Rejected */ readonly Rejected: 'R'; /** Held */ readonly Held: 'H'; /** Reminder - i.e. Registration Instructions are still outstanding */ readonly Reminder: 'N'; }>;