fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 597 B
TypeScript
/**
* 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";
}>;
export type CancellationRights = (typeof CancellationRights)[keyof typeof CancellationRights];