fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 309 B
TypeScript
/**
* Identifies the message transaction type.
* - Tag: 2804
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PayReportTransType: Readonly<{
/** New */
readonly New: 0;
/** Replace */
readonly Replace: 1;
readonly Status: 2;
}>;