UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 497 B
/** * 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; }>;