fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
14 lines (13 loc) • 325 B
TypeScript
/**
* Indicates the processing mode for a batch of messages.
* - Tag: 50002
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const BatchProcessMode: Readonly<{
/** Update/incremental (default if not specified) */
readonly Update: 0;
readonly Snapshot: 1;
}>;