@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
21 lines (20 loc) • 457 B
TypeScript
/**
* Reason the transfer instruction was rejected.
* tag: 2443
* @readonly
* @enum {number} (int)
*/
export declare enum TransferRejectReason {
/** Success */
Success = 0,
/** Invalid party */
InvalidParty = 1,
/** Unknown instrument */
UnknownInstrument = 2,
/** Not authorized to submit transfers */
UnauthorizedToSubmitXfer = 3,
/** Unknown position */
UnknownPosition = 4,
/** Other */
Other = 99
}