fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 656 B
TypeScript
/**
* Specifies a suitable settlement sub-method for a given settlement method.
* - Tag: 2579
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SettlSubMethod: Readonly<{
/** Shares */
readonly Shares: 1;
/** Derivatives */
readonly Derivatives: 2;
/** Payment vs payment */
readonly PaymentVsPayment: 3;
/** Notional */
readonly Notional: 4;
/** Cascade */
readonly Cascade: 5;
/** Repurchase */
readonly Repurchase: 6;
/** Other */
readonly Other: 99;
}>;
export type SettlSubMethod = (typeof SettlSubMethod)[keyof typeof SettlSubMethod];