import { InstrumentEvent } from './instrumentEvent'; /** * Definition of a reset event. This is an event that describes a reset or fixing for an instrument such as the floating payment on a swap cash flow. */ export interface ResetEvent extends InstrumentEvent { /** * The quantity associated with the reset. This will only be populated if the information is known. */ value?: number | null; /** * The type of the reset; e.g. RIC, Currency-pair */ resetType: string; /** * Fixing identification source, if available. */ fixingSource?: string | null; /** * What is the event status, is it a known (ie historic) or unknown (ie projected) event? */ eventStatus: string; /** * The date the reset fixes, or is observed upon. */ fixingDate: 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: ResetEvent.InstrumentEventTypeEnum; } export declare namespace ResetEvent { 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; }; }