fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 361 B
TypeScript
/**
* Specifies the direction of the message.
* - Tag: 385
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const MsgDirection: Readonly<{
/** Receive */
readonly Receive: "R";
/** Send */
readonly Send: "S";
}>;
export type MsgDirection = (typeof MsgDirection)[keyof typeof MsgDirection];