fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 406 B
TypeScript
/**
* Used for derivatives that deliver into cash underlying.
* - Tag: 974
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const UnderlyingCashType: Readonly<{
/** FIXED */
readonly FIXED: "FIXED";
/** DIFF */
readonly DIFF: "DIFF";
}>;
export type UnderlyingCashType = (typeof UnderlyingCashType)[keyof typeof UnderlyingCashType];