fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
20 lines (19 loc) • 396 B
TypeScript
/**
* Identifies transaction type
* - Tag: 20
* - FIX Specification type: char
* - FIX Specification version: FIX42
* - Mapped type: string
* @readonly
* @public
*/
export declare const ExecTransType: Readonly<{
/** New */
readonly New: '0';
/** Cancel */
readonly Cancel: '1';
/** Correct */
readonly Correct: '2';
/** Status */
readonly Status: '3';
}>;