fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 363 B
TypeScript
/**
* 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;
}>;