fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 459 B
TypeScript
/**
* Type of exercise of a derivatives security
* - Tag: 1194
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ExerciseStyle: Readonly<{
/** European */
readonly European: 0;
/** American */
readonly American: 1;
/** Bermuda */
readonly Bermuda: 2;
/** Other */
readonly Other: 99;
}>;
export type ExerciseStyle = (typeof ExerciseStyle)[keyof typeof ExerciseStyle];