fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 925 B
TypeScript
/**
* Indicates mode used for Settlement Instructions message. *** SOME VALUES HAVE BEEN REPLACED - See "Replaced Features and Supported Approach" ***
* - Tag: 160
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const SettlInstMode: Readonly<{
/** Default (Replaced) */
readonly Default: "0";
/** Standing Instructions Provided */
readonly StandingInstructionsProvided: "1";
/** Specific Allocation Account Overriding (Replaced) */
readonly SpecificAllocationAccountOverriding: "2";
/** Specific Allocation Account Standing (Replaced) */
readonly SpecificAllocationAccountStanding: "3";
/** Specific Order for a single account (for CIV) */
readonly SpecificOrderForASingleAccount: "4";
/** Request reject */
readonly RequestReject: "5";
}>;
export type SettlInstMode = (typeof SettlInstMode)[keyof typeof SettlInstMode];