fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 816 B
TypeScript
/**
* Maintenance Action to be performed.
* - Tag: 712
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosMaintAction: Readonly<{
/** New
Used to increment the overall transaction quantity. */
readonly New: 1;
/** Replace
Used to override the overall transaction quantity or specific add messages based on the reference ID. */
readonly Replace: 2;
/** Cancel
Used to remove the overall transaction quantity or specific add messages based on the reference ID. */
readonly Cancel: 3;
/** Reverse
Used to completelly back-out the transaction such that the transaction never existed. */
readonly Reverse: 4;
}>;
export type PosMaintAction = (typeof PosMaintAction)[keyof typeof PosMaintAction];