fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
27 lines (26 loc) • 971 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 received by at least one venue included in the certificate. */
readonly Submitted: 2;
/** Registered
Algo certificate accepted and registered by at least one venue included in the certificate. */
readonly Registered: 3;
/** Cancelled
Algo certificate terminated by the issuer prior to the submission to any venue or after revoking from the venue(s). */
readonly Cancelled: 4;
}>;
export type AlgoCertificateStatus = (typeof AlgoCertificateStatus)[keyof typeof AlgoCertificateStatus];