fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
46 lines (45 loc) • 1.65 kB
TypeScript
/**
* Result of risk limit definition request.
* - Tag: 1881
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const EntitlementRequestResult: Readonly<{
/** Successful (default) */
readonly Successful: 0;
/** Invalid party(-ies) */
readonly InvalidParty: 1;
/** Invalid related party(-ies) */
readonly InvalidRelatedParty: 2;
/** Invalid entitlement type(s) */
readonly InvalidEntitlementType: 3;
/** Invalid entitlement ID(s) / ref ID(s) */
readonly InvalidEntitlementID: 4;
/** Invalid entitlement attribute(s) */
readonly InvalidEntitlementAttribute: 5;
/** Invalid instrument scope(s) */
readonly InvalidInstrumentScope: 6;
/** Invalid market segment scope(s) */
readonly InvalidMarketSegmentScope: 7;
/** Invalid start date */
readonly InvalidStartDate: 8;
/** Invalid end date */
readonly InvalidEndDate: 9;
/** Instrument scope not supported */
readonly InstrumentScopeNotSupported: 10;
/** Market segment scope not supported */
readonly MarketSegmentScopeNotSupported: 11;
/** Entitlement not approved for party(-ies) */
readonly EntitlementNotApprovedForParty: 12;
/** Entitlement already defined for party(-ies) */
readonly EntitlementAlreadyDefinedForParty: 13;
/** Instrument not approved for party(-ies) */
readonly InstrumentNotApprovedForParty: 14;
/** Not authorized */
readonly NotAuthorized: 98;
/** Other */
readonly Other: 99;
}>;
export type EntitlementRequestResult = (typeof EntitlementRequestResult)[keyof typeof EntitlementRequestResult];