fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 383 B
TypeScript
/**
* Designates the account type to be used for the order when submitted to clearing.
* - Tag: 1816
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ClearingAccountType: Readonly<{
/** Customer */
readonly Customer: 1;
/** Firm */
readonly Firm: 2;
/** Market maker */
readonly MarketMaker: 3;
}>;