UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 675 B
/** * Used to indicate whether settlement instructions are provided on an allocation instruction message, and if not, how they are to be derived. * - Tag: 780 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocSettlInstType: Readonly<{ /** Use default instructions */ readonly UseDefaultInstructions: 0; /** Derive from parameters provided */ readonly DeriveFromParametersProvided: 1; /** Full details provided */ readonly FullDetailsProvided: 2; /** SSI DB IDs provided */ readonly SSIDBIDsProvided: 3; /** Phone for instructions */ readonly PhoneForInstructions: 4; }>;