import { InstrumentEvent } from './instrumentEvent'; /** * A split in the company\'s shares. Shareholders are given additional company shares based on the terms of the stock split. */ export interface StockSplitEvent extends InstrumentEvent { /** * This number describes the rate at which the company will be dividing their current shares outstanding. It is displayed as new shares per old. */ equitySplitRatio: number; /** * Date on which the stock-split takes effect. */ paymentDate: string; /** * Date you have to be the holder of record in order to participate in the tender. */ recordDate: 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: StockSplitEvent.InstrumentEventTypeEnum; } export declare namespace StockSplitEvent { 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; }; }