UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 473 B
/** * Stub type. * - Tag: 40873 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PaymentStubType: Readonly<{ /** Initial */ readonly Initial: 0; /** Final */ readonly Final: 1; /** Compounding initial */ readonly CompoundingInitial: 2; /** Compounding final */ readonly CompoundingFinal: 3; }>; export type PaymentStubType = (typeof PaymentStubType)[keyof typeof PaymentStubType];