fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 485 B
TypeScript
/**
* Forward start premium type.
* - Tag: 41160
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentForwardStartType: Readonly<{
/** Prepaid */
readonly Prepaid: 0;
/** Post-paid */
readonly Postpaid: 1;
/** Variable */
readonly Variable: 2;
/** Fixed */
readonly Fixed: 3;
}>;
export type PaymentForwardStartType = (typeof PaymentForwardStartType)[keyof typeof PaymentForwardStartType];