UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 307 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'; }>;