fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 683 B
TypeScript
/**
* The sub-classification or notional schedule type of the swap.
* - Tag: 1575
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const SwapSubClass: Readonly<{
/** Amortizing notional schedule */
readonly Amortizing: "AMTZ";
/** Compounding */
readonly Compounding: "COMP";
/** Constant notional schedule */
readonly ConstantNotionalSchedule: "CNST";
/** Accreting notional schedule */
readonly AccretingNotionalSchedule: "ACRT";
/** Custom notional schedule */
readonly CustomNotionalSchedule: "CUST";
}>;
export type SwapSubClass = (typeof SwapSubClass)[keyof typeof SwapSubClass];