fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 494 B
TypeScript
/**
* RestructuringType
* - 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';
}>;