fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 552 B
TypeScript
/**
* 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";
}>;
export type NotifyBrokerOfCredit = (typeof NotifyBrokerOfCredit)[keyof typeof NotifyBrokerOfCredit];