UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 587 B
/** * Identifies type of settlement * - Tag: 172 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SettlDeliveryType: Readonly<{ /** "Versus. Payment": Deliver (if Sell) or Receive (if Buy) vs. (Against) Payment */ readonly Versus: 0; /** "Free": Deliver (if Sell) or Receive (if Buy) Free */ readonly Free: 1; /** Tri-Party */ readonly TriParty: 2; /** Hold In Custody */ readonly HoldInCustody: 3; }>; export type SettlDeliveryType = (typeof SettlDeliveryType)[keyof typeof SettlDeliveryType];