fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
17 lines (16 loc) • 964 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;
/** Snapshot
Indicates that messages within the batch should be considered complete, and should replace all prior information. The recipient can take action, to be decided out of band, on previously received data omitted from the batch (e.g. an account not referenced has zero collateral value, a security not referenced is no longer tradable). The scope of completeness (e.g. a complete list of collateral values for all of a given firm's accounts, a complete list of options trading on a given exchange) will be decided out of band. */
readonly Snapshot: 1;
}>;
export type BatchProcessMode = (typeof BatchProcessMode)[keyof typeof BatchProcessMode];