UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 495 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; }>;