fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
23 lines (22 loc) • 758 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;
/** Deliver-by-Value
In the context of EU SFTR reporting, indicates that the transaction is to be or was settled using the DBV mechanism. */
readonly DeliverByValue: 4;
}>;
export type DeliveryType = (typeof DeliveryType)[keyof typeof DeliveryType];