UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 291 B
/** * 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; }>;