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