fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 674 B
TypeScript
/**
* Identifies the type of quote to be used.
* - Tag: 40111
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ProvisionCashSettlQuoteType: Readonly<{
/** Bid */
readonly Bid: 0;
/** Mid */
readonly Mid: 1;
/** Offer */
readonly Offer: 2;
/** Exercising party pays
See 2000 ISDA Definitions, Section 17.2, Certain Definitions Relating to Cash Settlement, paragraph (j) for definition of "exercising party pays". */
readonly ExercisingPartyPays: 3;
}>;
export type ProvisionCashSettlQuoteType = (typeof ProvisionCashSettlQuoteType)[keyof typeof ProvisionCashSettlQuoteType];