UNPKG

@finbourne/lusid-sdk-angular8

Version:

An angular (8+) SDK for secure access to the LUSID® by FINBOURNE web API

42 lines (41 loc) 2.18 kB
import { InstrumentEvent } from './instrumentEvent'; /** * A cash distribution paid out to shareholders. */ export interface CashDividendEvent { /** * The before tax amount for each share held being paid out to shareholders. */ grossAmount: number; /** * The date the company pays out dividends to shareholders. */ paymentDate: Date; /** * Date you have to be the holder of record in order to participate in the tender. */ recordDate: Date; /** * The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent */ instrumentEventType: CashDividendEvent.InstrumentEventTypeEnum; } export declare namespace CashDividendEvent { type InstrumentEventTypeEnum = 'TransitionEvent' | 'InformationalEvent' | 'OpenEvent' | 'CloseEvent' | 'StockSplitEvent' | 'BondDefaultEvent' | 'CashDividendEvent' | 'AmortisationEvent' | 'CashFlowEvent' | 'ExerciseEvent' | 'ResetEvent' | 'TriggerEvent' | 'RawVendorEvent' | 'InformationalErrorEvent'; const InstrumentEventTypeEnum: { TransitionEvent: InstrumentEvent.InstrumentEventTypeEnum; InformationalEvent: InstrumentEvent.InstrumentEventTypeEnum; OpenEvent: InstrumentEvent.InstrumentEventTypeEnum; CloseEvent: InstrumentEvent.InstrumentEventTypeEnum; StockSplitEvent: InstrumentEvent.InstrumentEventTypeEnum; BondDefaultEvent: InstrumentEvent.InstrumentEventTypeEnum; CashDividendEvent: InstrumentEvent.InstrumentEventTypeEnum; AmortisationEvent: InstrumentEvent.InstrumentEventTypeEnum; CashFlowEvent: InstrumentEvent.InstrumentEventTypeEnum; ExerciseEvent: InstrumentEvent.InstrumentEventTypeEnum; ResetEvent: InstrumentEvent.InstrumentEventTypeEnum; TriggerEvent: InstrumentEvent.InstrumentEventTypeEnum; RawVendorEvent: InstrumentEvent.InstrumentEventTypeEnum; InformationalErrorEvent: InstrumentEvent.InstrumentEventTypeEnum; }; }