fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 573 B
TypeScript
/**
* The classification or type of swap. Additional values may be used by mutual agreement of the counterparties.
* - Tag: 1941
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const SwapClass: Readonly<{
/** Basis swap */
readonly BasisSwap: "BS";
/** Index swap */
readonly IndexSwap: "IX";
/** Broad-based security swap */
readonly BroadBasedSecuritySwap: "BB";
/** Basket swap */
readonly BasketSwap: "SK";
}>;
export type SwapClass = (typeof SwapClass)[keyof typeof SwapClass];