fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 482 B
TypeScript
/**
* Settlement Instructions message transaction type
* - Tag: 163
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const SettlInstTransType: Readonly<{
/** New */
readonly New: "N";
/** Cancel */
readonly Cancel: "C";
/** Replace */
readonly Replace: "R";
/** Restate */
readonly Restate: "T";
}>;
export type SettlInstTransType = (typeof SettlInstTransType)[keyof typeof SettlInstTransType];