fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
20 lines (19 loc) • 528 B
TypeScript
/**
* Identifies type of settlement
* - Tag: 919
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryType: Readonly<{
/** "Versus Payment": Deliver (if sell) or Receive (if buy) vs. (against) Payment */
readonly VersusPayment: 0;
/** "Free": Deliver (if sell) or Receive (if buy) Free */
readonly Free: 1;
/** Tri-Party */
readonly TriParty: 2;
/** Hold In Custody */
readonly HoldInCustody: 3;
readonly DeliverByValue: 4;
}>;