fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 621 B
TypeScript
/**
* Specifies the scope to which the RegulatoryTradeID(1903) applies. Used when a trade must be assigned more than one identifier, e.g. one for the clearing member and another for the client on a cleared trade as with the principal model in Europe.
* - Tag: 2397
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RegulatoryTradeIDScope: Readonly<{
/** Clearing member */
readonly ClearingMember: 1;
/** Client */
readonly Client: 2;
}>;
export type RegulatoryTradeIDScope = (typeof RegulatoryTradeIDScope)[keyof typeof RegulatoryTradeIDScope];