fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 430 B
TypeScript
/**
* Code to identify the type of BidDescriptor (400).
* - Tag: 399
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const BidDescriptorType: Readonly<{
/** Sector */
readonly Sector: 1;
/** Country */
readonly Country: 2;
/** Index */
readonly Index: 3;
}>;
export type BidDescriptorType = (typeof BidDescriptorType)[keyof typeof BidDescriptorType];