fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 432 B
TypeScript
/**
* Indicates whether instruments are pre-listed only or can also be defined via user request
* - Tag: 1198
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ListMethod: Readonly<{
/** pre-listed only */
readonly PreListedOnly: 0;
/** user requested */
readonly UserRequested: 1;
}>;
export type ListMethod = (typeof ListMethod)[keyof typeof ListMethod];