fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 405 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;
}>;