@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 412 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
* @readonly
* @enum {number} (int)
*/
export declare enum MassActionResponse {
/** Rejected - See MassActionRejectReason(1376) */
Rejected = 0,
/** Accepted */
Accepted = 1,
/** Completed */
Completed = 2
}