fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
36 lines (35 loc) • 911 B
TypeScript
/**
* Time unit in which the OrderDelay(1428) is expressed
* - Tag: 1429
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrderDelayUnit: Readonly<{
/** Seconds (default if not specified) */
readonly Seconds: 0;
/** Tenths of a second */
readonly TenthsOfASecond: 1;
/** Hundredths of a second */
readonly HundredthsOfASecond: 2;
/** milliseconds */
readonly Milliseconds: 3;
/** microseconds */
readonly Microseconds: 4;
/** nanoseconds */
readonly Nanoseconds: 5;
/** minutes */
readonly Minutes: 10;
/** hours */
readonly Hours: 11;
/** days */
readonly Days: 12;
/** weeks */
readonly Weeks: 13;
/** months */
readonly Months: 14;
/** years */
readonly Years: 15;
}>;
export type OrderDelayUnit = (typeof OrderDelayUnit)[keyof typeof OrderDelayUnit];