fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 429 B
TypeScript
/**
* Identifies Registration Instructions transaction type
* - Tag: 514
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const RegistTransType: Readonly<{
/** New */
readonly New: "0";
/** Cancel */
readonly Cancel: "2";
/** Replace */
readonly Replace: "1";
}>;
export type RegistTransType = (typeof RegistTransType)[keyof typeof RegistTransType];