UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

23 lines (22 loc) 714 B
/** * Specifies when the complex event outcome takes effect. The outcome of a complex event is a payout or barrier action as specified by the ComplexEventType(1484). * - Tag: 1489 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ComplexEventPriceTimeType: Readonly<{ /** Expiration */ readonly Expiration: 1; /** Immediate (At Any Time) */ readonly Immediate: 2; /** Specified Date/Time */ readonly SpecifiedDate: 3; readonly Close: 4; readonly Open: 5; readonly OfficialSettlPrice: 6; readonly DerivativesClose: 7; /** As specified in Master Confirmation */ readonly AsSpecifiedMasterConfirmation: 8; }>;