UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 938 B
/** * Specifies how weather index units are to be calculated. * - Tag: 41199 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PaymentStreamSettlLevel: Readonly<{ /** Average The cumulative number of weather index units for each day in the calculation period divided by the number of days in the calculation period. */ readonly Average: 0; /** Maximum The maximum number of weather index units for any day in the calculaiton period. */ readonly Maximum: 1; /** Minimum The minimum number of weather index units for any day in the calculaiton period. */ readonly Minimum: 2; /** Cumulative The cumulative number of weather index units for each day in the calculaiton period. */ readonly Cumulative: 3; }>; export type PaymentStreamSettlLevel = (typeof PaymentStreamSettlLevel)[keyof typeof PaymentStreamSettlLevel];