fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 368 B
TypeScript
/**
* Identifies the form of delivery.
* - Tag: 668
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryForm: Readonly<{
/** Book Entry (default) */
readonly BookEntry: 1;
/** Bearer */
readonly Bearer: 2;
}>;
export type DeliveryForm = (typeof DeliveryForm)[keyof typeof DeliveryForm];