fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 469 B
TypeScript
/**
* Specifies the consequences of bullion settlement disruption events.
* - Tag: 2143
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SettlDisruptionProvision: Readonly<{
/** Negotiation */
readonly Negotiation: 1;
/** Cancellation and payment */
readonly Cancellation: 2;
}>;
export type SettlDisruptionProvision = (typeof SettlDisruptionProvision)[keyof typeof SettlDisruptionProvision];