fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 822 B
TypeScript
/**
* Defines applicable periods for interpolation.
* - Tag: 42604
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamInterpolationPeriod: Readonly<{
/** Initial
Interpolation is applicable to the initial period only. */
readonly Initial: 0;
/** Initial and final
Interpolation is applicable to the initial and final periods only. */
readonly InitialAndFinal: 1;
/** Final
Interpolation is applicable to the final period only. */
readonly Final: 2;
/** Any period
Interpolation is applicable to any non-standard period. */
readonly AnyPeriod: 3;
}>;
export type PaymentStreamInterpolationPeriod = (typeof PaymentStreamInterpolationPeriod)[keyof typeof PaymentStreamInterpolationPeriod];