fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 467 B
TypeScript
/**
* Describes the source of the identifier that RelatedOrderID(2887) represents.
* - Tag: 2888
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RelatedOrderIDSource: Readonly<{
/** Non-FIX Source */
readonly NonFIXSource: 0;
readonly SystemOrderIdentifier: 1;
readonly ClientOrderIdentifier: 2;
readonly SecondaryOrderIdentifier: 3;
readonly SecondaryClientOrderIdentifier: 4;
}>;