UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

25 lines (24 loc) 743 B
/** * Collateral Status * - Tag: 910 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CollStatus: Readonly<{ /** Unassigned */ readonly Unassigned: 0; /** Partially Assigned */ readonly PartiallyAssigned: 1; /** Assignment Proposed */ readonly AssignmentProposed: 2; /** Assigned (Accepted) */ readonly Assigned: 3; /** Challenged */ readonly Challenged: 4; /** Reused A modification of the details of the collateral re-use. In the context of EU SFTR reporting, to be used with RegulatoryReportType(1934)=31 (Collateral update). */ readonly Reused: 5; }>; export type CollStatus = (typeof CollStatus)[keyof typeof CollStatus];