UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

22 lines (21 loc) 579 B
/** * Time unit associated with the frequency of payments. * - Tag: 40754 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const PaymentStreamPaymentFrequencyUnit: Readonly<{ /** Day */ readonly Day: "D"; /** Week */ readonly Week: "Wk"; /** Month */ readonly Month: "Mo"; /** Year */ readonly Year: "Yr"; /** Term */ readonly Term: "T"; }>; export type PaymentStreamPaymentFrequencyUnit = (typeof PaymentStreamPaymentFrequencyUnit)[keyof typeof PaymentStreamPaymentFrequencyUnit];