fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
25 lines (24 loc) • 492 B
TypeScript
/**
* Time unit associated with the event.
* - Tag: 1827
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const EventTimeUnit: Readonly<{
/** Hour */
readonly Hour: 'H';
/** Minute */
readonly Minute: 'Min';
/** Second */
readonly Second: 'S';
/** Day */
readonly Day: 'D';
/** Week */
readonly Week: 'Wk';
/** Month */
readonly Month: 'Mo';
/** Year */
readonly Year: 'Yr';
}>;