fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
25 lines (24 loc) • 812 B
TypeScript
/**
* Identifies the type of quote cancel.
* - Tag: 298
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const QuoteCancelType: Readonly<{
/** Cancel quotes for one or more securities */
readonly CancelForOneOrMoreSecurities: 1;
/** Cancel quotes for security type(s) */
readonly CancelForSecurityType: 2;
/** Cancel quotes for underlying security */
readonly CancelForUnderlyingSecurity: 3;
/** Cancel all quotes */
readonly CancelAllQuotes: 4;
readonly CancelSpecifiedSingleQuote: 5;
readonly CancelByTypeOfQuote: 6;
/** Cancel quotes for an issuer */
readonly CancelForSecurityIssuer: 7;
/** Cancel quotes for an issuer of underlying security */
readonly CancelForIssuerOfUnderlyingSecurity: 8;
}>;