fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 380 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;
}>;