fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 354 B
TypeScript
/**
* Defines the type of action to take when the trigger hits.
* - Tag: 1101
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TriggerAction: Readonly<{
/** Activate */
readonly Activate: '1';
/** Modify */
readonly Modify: '2';
/** Cancel */
readonly Cancel: '3';
}>;