fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 384 B
TypeScript
/**
* Indicates the type of transfer report.
* - Tag: 2444
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TransferReportType: Readonly<{
/** Submit */
readonly Submit: 0;
/** Alleged */
readonly Alleged: 1;
}>;
export type TransferReportType = (typeof TransferReportType)[keyof typeof TransferReportType];