fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
18 lines (17 loc) • 364 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;
readonly ExercisingPartyPays: 3;
}>;