fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 551 B
TypeScript
/**
* 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";
}>;
export type RegistStatus = (typeof RegistStatus)[keyof typeof RegistStatus];