fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 816 B
TypeScript
/**
* Specifies the negotiation method to be used.
* - Tag: 2115
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const NegotiationMethod: Readonly<{
/** Auto spot
The spot price for the reference or benchmark security is provided automatically. */
readonly AutoSpot: 0;
/** Negotiated spot
The spot price for the reference or benchmark security is to be negotiated. */
readonly NegotiatedSpot: 1;
/** The spot price for the reference or benchmark security is to be negotiated via phone or voice.
The spot price for the reference of benchmark security is to be negotiated via phone or voice. */
readonly PhoneSpot: 2;
}>;
export type NegotiationMethod = (typeof NegotiationMethod)[keyof typeof NegotiationMethod];