fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 379 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;
}>;