@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 313 B
TypeScript
/**
* Indicates that this message is to serve as the final and legal confirmation.
* tag: 650
* @readonly
* @enum {string} (Boolean)
*/
export declare enum LegalConfirm {
/** Does not consitute a Legal Confirm */
DoesNotConsituteALegalConfirm = "N",
/** Legal Confirm */
LegalConfirm = "Y"
}