fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 741 B
TypeScript
/**
* Specifies the type of business event related to an algo certification report.
* - Tag: 3078
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AlgoCertificateReportType: Readonly<{
/** Certificate information
The recipient of the report is informed about a certificate. */
readonly CertificateInformation: 0;
/** Certificate state changed
The recipient of the report is informed that the status of a certificate has changed. The new state is provided with AlgoCertificateStatus(3022). */
readonly CertificateStateChanged: 1;
}>;
export type AlgoCertificateReportType = (typeof AlgoCertificateReportType)[keyof typeof AlgoCertificateReportType];