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