@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 409 B
TypeScript
/**
* For CIV - A one character code identifying whether Cancellation rights/Cooling off period applies.
* tag: 480
* @readonly
* @enum {string} (char)
*/
export declare enum CancellationRights {
/** Yes */
Yes = "Y",
/** No - Execution Only */
NoExecutionOnly = "N",
/** No - Waiver agreement */
NoWaiverAgreement = "M",
/** No - Institutional */
NoInstitutional = "O"
}