fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 528 B
TypeScript
/**
* The distribution of pricing days.
* - Tag: 41214
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamPricingDayDistribution: Readonly<{
/** All */
readonly All: 0;
/** First */
readonly First: 1;
/** Last */
readonly Last: 2;
/** Penultimate */
readonly Penultimate: 3;
}>;
export type PaymentStreamPricingDayDistribution = (typeof PaymentStreamPricingDayDistribution)[keyof typeof PaymentStreamPricingDayDistribution];