UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 390 B
/** * Indicates that this message is to serve as the final and legal confirmation. * - Tag: 650 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const LegalConfirm: Readonly<{ /** Does not consitute a Legal Confirm */ readonly DoesNotConsituteALegalConfirm: 'N'; /** Legal Confirm */ readonly LegalConfirm: 'Y'; }>;