fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 677 B
TypeScript
/**
* Indicates whether follow-up confirmation of exercise (written or electronic) is required following telephonic notice by the buyer to the seller or seller's agent.
* - Tag: 41111
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ExerciseConfirmationMethod: Readonly<{
/** Not required */
readonly NotRequired: 0;
/** Non-electronic */
readonly NonElectronic: 1;
/** Electronic */
readonly Electronic: 2;
/** Unknown at time of report */
readonly Unknown: 3;
}>;
export type ExerciseConfirmationMethod = (typeof ExerciseConfirmationMethod)[keyof typeof ExerciseConfirmationMethod];