fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 467 B
TypeScript
/**
* 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";
}>;
export type LegalConfirm = (typeof LegalConfirm)[keyof typeof LegalConfirm];