fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 694 B
TypeScript
/**
* A category of CDS credit event in which the underlying bond experiences a restructuring.
Used to define a CDS instrument.
* - Tag: 1449
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const RestructuringType: Readonly<{
/** Full Restructuring */
readonly FullRestructuring: "FR";
/** Modified Restructuring */
readonly ModifiedRestructuring: "MR";
/** Modified Mod Restructuring */
readonly ModifiedModRestructuring: "MM";
/** No Restructuring specified */
readonly NoRestructuringSpecified: "XR";
}>;
export type RestructuringType = (typeof RestructuringType)[keyof typeof RestructuringType];