@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 342 B
TypeScript
/**
* Indicates the status of the risk limit check request.
* tag: 2325
* @readonly
* @enum {number} (int)
*/
export declare enum RiskLimitCheckRequestStatus {
Approved = 0,
PartiallyApproved = 1,
/** Rejected */
Rejected = 2,
/** Approval pending */
ApprovalPending = 3,
/** Cancelled */
Cancelled = 4
}