fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 572 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";
}>;
export type EventTimeUnit = (typeof EventTimeUnit)[keyof typeof EventTimeUnit];