fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 380 B
TypeScript
/**
* Status of the SettlementStatusRequest(35=EC) message being responded to.
* - Tag: 2966
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SettlStatusRequestStatus: Readonly<{
/** Received, not yet processed */
readonly Received: 0;
/** Accepted */
readonly Accepted: 1;
readonly Rejected: 2;
}>;