UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 382 B
/** * Identifies the message transaction type. * - Tag: 2811 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PayRequestTransType: Readonly<{ /** New */ readonly New: 0; /** Cancel */ readonly Cancel: 1; }>; export type PayRequestTransType = (typeof PayRequestTransType)[keyof typeof PayRequestTransType];