fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 674 B
TypeScript
/**
* Defines how the composition of dividends is to be determined.
* - Tag: 42259
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DividendComposition: Readonly<{
/** Equity amount receiver election
The equity amount receiver determines the composition of dividends (subject to conditions). */
readonly EquityAmountReceiver: 0;
/** Calculation agent election
The calculation agent determines the composition of dividends (subject to conditions). */
readonly CalculationAgent: 1;
}>;
export type DividendComposition = (typeof DividendComposition)[keyof typeof DividendComposition];