fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 492 B
TypeScript
/**
* Expiration Quantity type
* - Tag: 982
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ExpirationQtyType: Readonly<{
/** Auto Exercise */
readonly AutoExercise: 1;
/** Non Auto Exercise */
readonly NonAutoExercise: 2;
/** Final Will Be Exercised */
readonly FinalWillBeExercised: 3;
/** Contrary Intention */
readonly ContraryIntention: 4;
/** Difference */
readonly Difference: 5;
}>;