fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 436 B
TypeScript
/**
* Used for options when delivering the order to an execution system/exchange to specify if the order is for a customer or the firm placing the order itself.
* - Tag: 204
* - FIX Specification type: int
* - FIX Specification version: FIX42
* - Mapped type: number
* @readonly
* @public
*/
export declare const CustomerOrFirm: Readonly<{
/** Customer */
readonly Customer: 0;
/** Firm */
readonly Firm: 1;
}>;