UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 375 B
/** * Email message type. * - Tag: 94 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const EmailType: Readonly<{ /** New */ readonly New: "0"; /** Reply */ readonly Reply: "1"; /** Admin Reply */ readonly AdminReply: "2"; }>; export type EmailType = (typeof EmailType)[keyof typeof EmailType];