fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 459 B
TypeScript
/**
* The status of the collateral report.
* - Tag: 2488
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CollRptStatus: Readonly<{
/** Accepted (successfully processed) */
readonly Accepted: 0;
/** Received (not yet processed) */
readonly Received: 1;
/** Rejected */
readonly Rejected: 2;
}>;
export type CollRptStatus = (typeof CollRptStatus)[keyof typeof CollRptStatus];