fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
34 lines (33 loc) • 785 B
TypeScript
/**
* Specifies the application layer version being applied at the message level.
* - Tag: 1128
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const ApplVerID: Readonly<{
/** FIX27 */
readonly FIX27: "0";
/** FIX30 */
readonly FIX30: "1";
/** FIX40 */
readonly FIX40: "2";
/** FIX41 */
readonly FIX41: "3";
/** FIX42 */
readonly FIX42: "4";
/** FIX43 */
readonly FIX43: "5";
/** FIX44 */
readonly FIX44: "6";
/** FIX50 */
readonly FIX50: "7";
/** FIX50SP1 */
readonly FIX50SP1: "8";
/** FIX50SP2 */
readonly FIX50SP2: "9";
/** FIXLatest */
readonly FIXLatest: "10";
}>;
export type ApplVerID = (typeof ApplVerID)[keyof typeof ApplVerID];