UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 333 B
/** * Indicates whether or not the order was solicited. * - Tag: 377 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const SolicitedFlag: Readonly<{ /** Was not solicited */ readonly WasNotSolicited: 'N'; /** Was solicited */ readonly WasSolicited: 'Y'; }>;