UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 606 B
/** * The sub-classification or notional schedule type of the swap. * - Tag: 1575 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const SwapSubClass: Readonly<{ /** Amortizing notional schedule */ readonly Amortizing: 'AMTZ'; /** Compounding */ readonly Compounding: 'COMP'; /** Constant notional schedule */ readonly ConstantNotionalSchedule: 'CNST'; /** Accreting notional schedule */ readonly AccretingNotionalSchedule: 'ACRT'; /** Custom notional schedule */ readonly CustomNotionalSchedule: 'CUST'; }>;