fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
82 lines (81 loc) • 2.02 kB
TypeScript
/**
* Datatype of the entitlement attribute.
* - Tag: 1779
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const EntitlementAttribDatatype: Readonly<{
/** int */
readonly Int: 1;
/** Length */
readonly Length: 2;
/** NumInGroup */
readonly NumInGroup: 3;
/** SeqNum */
readonly SeqNum: 4;
/** TagNum */
readonly TagNum: 5;
/** float */
readonly Float: 6;
/** Qty */
readonly Qty: 7;
/** Price */
readonly Price: 8;
/** PriceOffset */
readonly PriceOffset: 9;
/** Amt */
readonly Amt: 10;
/** Percentage */
readonly Percentage: 11;
/** char */
readonly Char: 12;
/** Boolean */
readonly Boolean: 13;
/** String */
readonly String: 14;
/** MultipleCharValue */
readonly MultipleCharValue: 15;
/** Currency */
readonly Currency: 16;
/** Exchange */
readonly Exchange: 17;
/** MonthYear */
readonly MonthYear: 18;
/** UTCTimestamp */
readonly UTCTimestamp: 19;
/** UTCTimeOnly */
readonly UTCTimeOnly: 20;
/** LocalMktDate */
readonly LocalMktDate: 21;
/** UTCDateOnly */
readonly UTCDateOnly: 22;
/** data */
readonly Data: 23;
/** MultipleStringValue */
readonly MultipleStringValue: 24;
/** Country */
readonly Country: 25;
/** Language */
readonly Language: 26;
/** TZTimeOnly */
readonly TZTimeOnly: 27;
/** TZTimestamp */
readonly TZTimestamp: 28;
/** Tenor */
readonly Tenor: 29;
/** DayOfMonth */
readonly DayOfMonth: 30;
/** XMLData */
readonly XMLData: 31;
/** Pattern */
readonly Pattern: 32;
/** Reserved100Plus */
readonly Reserved100Plus: 33;
/** Reserved1000Plus */
readonly Reserved1000Plus: 34;
/** Reserved4000Plus */
readonly Reserved4000Plus: 35;
}>;
export type EntitlementAttribDatatype = (typeof EntitlementAttribDatatype)[keyof typeof EntitlementAttribDatatype];