fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 402 B
TypeScript
/**
* Identifies IOI message transaction type
* - Tag: 28
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const IOITransType: Readonly<{
/** New */
readonly New: "N";
/** Cancel */
readonly Cancel: "C";
/** Replace */
readonly Replace: "R";
}>;
export type IOITransType = (typeof IOITransType)[keyof typeof IOITransType];