fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
14 lines (13 loc) • 406 B
TypeScript
/**
* Identifies the class or source of DeskType(1033) values. Conditionally required when DeskType(1033) is specified.
* - Tag: 1034
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeskTypeSource: Readonly<{
/** FINRA OATS */
readonly FINRAOATS: 1;
}>;
export type DeskTypeSource = (typeof DeskTypeSource)[keyof typeof DeskTypeSource];