import { InstrumentEvent } from './instrumentEvent'; /** * Event holder containing error information */ export interface InformationalErrorEvent extends InstrumentEvent { /** * The details of the error */ errorDetail: string; /** * The error reason */ errorReason: string; /** * The effective date of the evaulation */ effectiveAt: 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: InformationalErrorEvent.InstrumentEventTypeEnum; } export declare namespace InformationalErrorEvent { 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; }; }