fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
19 lines (18 loc) • 507 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;
/** Status
An unsolicited message reporting the current progress status of the payment. */
readonly Status: 2;
}>;
export type PayReportTransType = (typeof PayReportTransType)[keyof typeof PayReportTransType];