fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
28 lines (27 loc) • 597 B
TypeScript
/**
* Identifies the type of Quote Response.
* - Tag: 694
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const QuoteRespType: Readonly<{
/** Hit/Lift */
readonly Hit: 1;
/** Counter */
readonly Counter: 2;
/** Expired */
readonly Expired: 3;
readonly Cover: 4;
readonly DoneAway: 5;
/** Pass */
readonly Pass: 6;
readonly EndTrade: 7;
/** Timed out */
readonly TimedOut: 8;
readonly Tied: 9;
readonly TiedCover: 10;
readonly Accept: 11;
readonly TerminateContract: 12;
}>;