fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 375 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;
}>;