fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 551 B
TypeScript
/**
* If optional early termination is not available to both parties then this component identifies the buyer of the option through its side of the trade.
* - Tag: 40099
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ProvisionOptionSinglePartyBuyerSide: Readonly<{
/** Buy */
readonly Buy: 1;
/** Sell */
readonly Sell: 2;
}>;
export type ProvisionOptionSinglePartyBuyerSide = (typeof ProvisionOptionSinglePartyBuyerSide)[keyof typeof ProvisionOptionSinglePartyBuyerSide];