fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 1.26 kB
TypeScript
/**
* Specifies the type of business event related to an algo certification request.
* - Tag: 3077
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AlgoCertificateRequestType: Readonly<{
/** Certificate information
The recipient of the request is asked to provide certificates based on the criteria defined as part of the request. */
readonly CertificateInformation: 0;
/** Generate certificate
The recipient of the request is asked to generate a new certificate based on the information defined or referenced in the request. */
readonly GenerateCertificate: 1;
/** Change certificate status
The recipient of the request is asked to update the status of the certificate referenced in the request. The requested status is provided with AlgoCertificateStatus(3022). */
readonly ChangeCertificateStatus: 2;
/** Forward certificate
The recipient of the request is asked to submit the certificate referenced in the request to the venue identified in the TargetParties component. */
readonly ForwardCertificate: 3;
}>;
export type AlgoCertificateRequestType = (typeof AlgoCertificateRequestType)[keyof typeof AlgoCertificateRequestType];