fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 713 B
TypeScript
/**
* Specifies when the payout is to occur.
* - Tag: 2121
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ComplexOptPayoutTime: Readonly<{
/** Close */
readonly Close: 0;
/** Open */
readonly Open: 1;
/** Official settlement */
readonly OfficialSettl: 2;
/** Valuation time */
readonly ValuationTime: 3;
/** Exchange settlement time */
readonly ExcahgneSettlTime: 4;
/** Derivatives close */
readonly DerivativesClose: 5;
/** As specified in master confirmation */
readonly AsSpecified: 6;
}>;
export type ComplexOptPayoutTime = (typeof ComplexOptPayoutTime)[keyof typeof ComplexOptPayoutTime];