fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 484 B
TypeScript
/**
* Instruction to disclose information or to use default value of the receiver.
* - Tag: 1814
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DisclosureInstruction: Readonly<{
/** No */
readonly No: 0;
/** Yes */
readonly Yes: 1;
/** Use default setting */
readonly UseDefaultSetting: 2;
}>;
export type DisclosureInstruction = (typeof DisclosureInstruction)[keyof typeof DisclosureInstruction];