import { InstrumentEvent } from './instrumentEvent'; /** * Definition of an Amortisation event. This is an event that describes the occurence of amortisation. */ export interface AmortisationEvent extends InstrumentEvent { /** * The amount reduced in this amortisation event. That is, the difference between the previous notional amount and the current notional amount as set in this event. */ amountReduced: number; /** * Domestic currency of the originating instrument */ domCcy: string; /** * Is this event in relation to the Pay or Receive leg */ payReceive: string; /** * What is the event status, is it a known (ie historic) or unknown (ie projected) event? */ eventStatus: string; /** * The date the principal payment is to be made. */ paymentDate: string; /** * The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent */ instrumentEventType: AmortisationEvent.InstrumentEventTypeEnum; } export declare namespace AmortisationEvent { type InstrumentEventTypeEnum = 'TransitionEvent' | 'InformationalEvent' | 'OpenEvent' | 'CloseEvent' | 'StockSplitEvent' | 'BondDefaultEvent' | 'CashDividendEvent' | 'AmortisationEvent' | 'CashFlowEvent' | 'ExerciseEvent' | 'ResetEvent' | 'TriggerEvent' | 'RawVendorEvent' | 'InformationalErrorEvent' | 'BondCouponEvent' | 'DividendReinvestmentEvent' | 'AccumulationEvent'; const InstrumentEventTypeEnum: { TransitionEvent: InstrumentEventTypeEnum; InformationalEvent: InstrumentEventTypeEnum; OpenEvent: InstrumentEventTypeEnum; CloseEvent: InstrumentEventTypeEnum; StockSplitEvent: InstrumentEventTypeEnum; BondDefaultEvent: InstrumentEventTypeEnum; CashDividendEvent: InstrumentEventTypeEnum; AmortisationEvent: InstrumentEventTypeEnum; CashFlowEvent: InstrumentEventTypeEnum; ExerciseEvent: InstrumentEventTypeEnum; ResetEvent: InstrumentEventTypeEnum; TriggerEvent: InstrumentEventTypeEnum; RawVendorEvent: InstrumentEventTypeEnum; InformationalErrorEvent: InstrumentEventTypeEnum; BondCouponEvent: InstrumentEventTypeEnum; DividendReinvestmentEvent: InstrumentEventTypeEnum; AccumulationEvent: InstrumentEventTypeEnum; }; }