UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 946 B
/** * Indicates how the gross cash dividend amount per share is determined. * - Tag: 42247 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DividendAmountType: Readonly<{ /** Record amount 100% of the gross cash dividend per share paid over record date during relevant dividend period. */ readonly RecordAmount: 0; /** Ex amount 100% of gross cash dividend per share paid after the ex-dividend date during relevant dividend period. */ readonly ExAmount: 1; /** Paid amount 100% of gross cash dividend per share paid during relevant dividend period. */ readonly PaidAmount: 2; /** As specified in master confirmation The amount is determined as provided in the relevant master confirmation. */ readonly PerMasterConfirm: 3; }>; export type DividendAmountType = (typeof DividendAmountType)[keyof typeof DividendAmountType];