fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 575 B
TypeScript
/**
* Type of provisions.
* - Tag: 40091
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ProvisionType: Readonly<{
/** Mandatory early termination */
readonly MandatoryEarlyTermination: 0;
/** Optional early termination */
readonly OptionalEarlyTermination: 1;
/** Cancelable */
readonly Cancelable: 2;
readonly Extendable: 3;
/** Mutual early termination */
readonly MutualEarlyTermination: 4;
readonly Evergreen: 5;
readonly Callable: 6;
readonly Puttable: 7;
}>;