UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 451 B
/** * Indicates whether or not details should be communicated to BrokerOfCredit (i.e. step-in broker). * - Tag: 208 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const NotifyBrokerOfCredit: Readonly<{ /** Details should not be communicated */ readonly DetailsShouldNotBeCommunicated: 'N'; /** Details should be communicated */ readonly DetailsShouldBeCommunicated: 'Y'; }>;