UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 589 B
/** * Defines the contract event which the receiver of the derivative is entitled to the dividend. * - Tag: 42246 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DividendEntitlementEvent: Readonly<{ /** Ex-date Dividend entitlement is on the dividend ex-date. */ readonly ExDate: 0; /** Record date Dividend entitlement is on the dividend record date. */ readonly RecordDate: 1; }>; export type DividendEntitlementEvent = (typeof DividendEntitlementEvent)[keyof typeof DividendEntitlementEvent];