fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 413 B
TypeScript
/**
* Indicates whether the rate source specified is a primary or secondary source.
* - Tag: 1447
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RateSourceType: Readonly<{
/** Primary */
readonly Primary: 0;
/** Secondary */
readonly Secondary: 1;
}>;
export type RateSourceType = (typeof RateSourceType)[keyof typeof RateSourceType];