@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
23 lines (22 loc) • 375 B
TypeScript
/**
* Time unit associated with the event.
* tag: 1827
* @readonly
* @enum {string} (String)
*/
export declare enum EventTimeUnit {
/** Hour */
Hour = "H",
/** Minute */
Minute = "Min",
/** Second */
Second = "S",
/** Day */
Day = "D",
/** Week */
Week = "Wk",
/** Month */
Month = "Mo",
/** Year */
Year = "Yr"
}