fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 342 B
TypeScript
/**
* The type of quote used to determine the cash settlement price.
* - Tag: 40027
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CashSettlQuoteMethod: Readonly<{
/** Bid */
readonly Bid: 0;
/** Mid */
readonly Mid: 1;
/** Offer */
readonly Offer: 2;
}>;