UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 458 B
/** * Specifies the type of delivery stream. * - Tag: 41058 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DeliveryStreamType: Readonly<{ /** Periodic (default if not specified) */ readonly Periodic: 0; /** Initial */ readonly Initial: 1; /** Single */ readonly Single: 2; }>; export type DeliveryStreamType = (typeof DeliveryStreamType)[keyof typeof DeliveryStreamType];