fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 569 B
TypeScript
/**
* Status of Collateral Inquiry
* - Tag: 945
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CollInquiryStatus: Readonly<{
/** Accepted */
readonly Accepted: 0;
/** Accepted With Warnings */
readonly AcceptedWithWarnings: 1;
/** Completed */
readonly Completed: 2;
/** Completed With Warnings */
readonly CompletedWithWarnings: 3;
/** Rejected */
readonly Rejected: 4;
}>;
export type CollInquiryStatus = (typeof CollInquiryStatus)[keyof typeof CollInquiryStatus];