fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 474 B
TypeScript
/**
* Code to identify the type of Bid Request.
* - Tag: 394
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const BidType: Readonly<{
/** "Non Disclosed" style (e.g. US/European) */
readonly NonDisclosed: 1;
/** "Disclosed" style (e.g. Japanese) */
readonly Disclosed: 2;
/** No bidding process */
readonly NoBiddingProcess: 3;
}>;
export type BidType = (typeof BidType)[keyof typeof BidType];