fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
27 lines (26 loc) • 669 B
TypeScript
/**
* Information subject to disclosure.
* - Tag: 1813
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DisclosureType: Readonly<{
/** Volume */
readonly Volume: 1;
/** Price */
readonly Price: 2;
/** Side */
readonly Side: 3;
/** AON */
readonly AON: 4;
/** General
General is used for bilateral agreed disclosure information type(s). */
readonly General: 5;
/** Clearing account */
readonly ClearingAccount: 6;
/** CMTA account */
readonly CMTAAccount: 7;
}>;
export type DisclosureType = (typeof DisclosureType)[keyof typeof DisclosureType];