fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 713 B
TypeScript
/**
* Status of the certification as provided by the regulatory authority.
* - Tag: 3022
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AlgoCertificateStatus: Readonly<{
/** Draft
Algo certificate created. */
readonly Draft: 0;
/** Approved
Algo certificate approved by authorized person. */
readonly Approved: 1;
/** Submitted
Algo certificate sent to venue. */
readonly Submitted: 2;
/** Registered
Algo certificate accepted and registered by venue. */
readonly Registered: 3;
}>;
export type AlgoCertificateStatus = (typeof AlgoCertificateStatus)[keyof typeof AlgoCertificateStatus];