UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 502 B
/** * For CIV - A one character code identifying whether Cancellation rights/Cooling off period applies. * - Tag: 480 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const CancellationRights: Readonly<{ /** Yes */ readonly Yes: 'Y'; /** No - Execution Only */ readonly NoExecutionOnly: 'N'; /** No - Waiver agreement */ readonly NoWaiverAgreement: 'M'; /** No - Institutional */ readonly NoInstitutional: 'O'; }>;