fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 592 B
TypeScript
/**
* Specifies the action taken by counterparty order handling system as a result of the action type indicated in MassActionType of the Order Mass Action Request.
* - Tag: 1375
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MassActionResponse: Readonly<{
/** Rejected - See MassActionRejectReason(1376) */
readonly Rejected: 0;
/** Accepted */
readonly Accepted: 1;
/** Completed */
readonly Completed: 2;
}>;
export type MassActionResponse = (typeof MassActionResponse)[keyof typeof MassActionResponse];