@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
23 lines (22 loc) • 583 B
TypeScript
/**
* Collateral Assignment Reject Reason
* tag: 906
* @readonly
* @enum {number} (int)
*/
export declare enum CollAsgnRejectReason {
/** Unknown deal (order / trade) */
UnknownDeal = 0,
/** Unknown or invalid instrument */
UnknownOrInvalidInstrument = 1,
/** Unauthorized transaction */
UnauthorizedTransaction = 2,
/** Insufficient collateral */
InsufficientCollateral = 3,
/** Invalid type of collateral */
InvalidTypeOfCollateral = 4,
/** Excessive substitution */
ExcessiveSubstitution = 5,
/** Other */
Other = 99
}