fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 468 B
TypeScript
/**
* Time unit associated with the interval to the first (and possibly only) exercise date in the exercise period.
* - Tag: 40126
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const ProvisionOptionExerciseEarliestDateOffsetUnit: Readonly<{
/** Day */
readonly Day: 'D';
/** Week */
readonly Week: 'Wk';
/** Month */
readonly Month: 'Mo';
/** Year */
readonly Year: 'Yr';
}>;