fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
19 lines (18 loc) • 583 B
TypeScript
/**
* Status of the AlgoCertificateRequest(35=EH) message being responded to.
* - Tag: 3017
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AlgoCertificateRequestStatus: Readonly<{
/** Received, not yet processed */
readonly Received: 0;
/** Accepted */
readonly Accepted: 1;
/** Rejected
Rejection reason provided in RejectText(1328). */
readonly Rejected: 2;
}>;
export type AlgoCertificateRequestStatus = (typeof AlgoCertificateRequestStatus)[keyof typeof AlgoCertificateRequestStatus];