fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 407 B
TypeScript
/**
* Status of the AllocationInstructionAlertRequest(35=DU).
* - Tag: 2768
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocRequestStatus: Readonly<{
/** Accepted */
readonly Accepted: 0;
/** Rejected */
readonly Rejected: 1;
}>;
export type AllocRequestStatus = (typeof AllocRequestStatus)[keyof typeof AllocRequestStatus];