fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 443 B
TypeScript
/**
* Indicates the status of the risk limit check request.
* - Tag: 2325
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RiskLimitCheckRequestStatus: Readonly<{
readonly Approved: 0;
readonly PartiallyApproved: 1;
/** Rejected */
readonly Rejected: 2;
/** Approval pending */
readonly ApprovalPending: 3;
/** Cancelled */
readonly Cancelled: 4;
}>;