fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 610 B
TypeScript
/**
* Specifies whether the PaymentScheduleStepRate(40847) or PaymentScheduleStepOffsetValue(40846) should be applied to the initial notional or the previous notional in order to calculate the notional step change amount.
* - Tag: 40849
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentScheduleStepRelativeTo: Readonly<{
/** Initial */
readonly Initial: 0;
/** Previous */
readonly Previous: 1;
}>;
export type PaymentScheduleStepRelativeTo = (typeof PaymentScheduleStepRelativeTo)[keyof typeof PaymentScheduleStepRelativeTo];