fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 638 B
TypeScript
/**
* Indicates the action required by a User Request Message
* - Tag: 924
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const UserRequestType: Readonly<{
/** Log On User */
readonly LogOnUser: 1;
/** Log Off User */
readonly LogOffUser: 2;
/** Change Password For User */
readonly ChangePasswordForUser: 3;
/** Request Individual User Status */
readonly RequestIndividualUserStatus: 4;
/** Request Throttle Limit */
readonly RequestThrottleLimit: 5;
}>;
export type UserRequestType = (typeof UserRequestType)[keyof typeof UserRequestType];