@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 381 B
TypeScript
/**
* Registration status as returned by the broker or (for CIV) the fund manager:
* tag: 506
* @readonly
* @enum {string} (char)
*/
export declare enum RegistStatus {
/** Accepted */
Accepted = "A",
/** Rejected */
Rejected = "R",
/** Held */
Held = "H",
/** Reminder - i.e. Registration Instructions are still outstanding */
Reminder = "N"
}