fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
26 lines (25 loc) • 740 B
TypeScript
/**
* The type of order attribute.
* - Tag: 2594
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrderAttributeType: Readonly<{
readonly AggregatedOrder: 0;
readonly PendingAllocation: 1;
readonly LiquidityProvisionActivityOrder: 2;
readonly RiskReductionOrder: 3;
readonly AlgorithmicOrder: 4;
readonly SystematicInternaliserOrder: 5;
readonly AllExecutionsSubmittedToAPA: 6;
readonly OrderExecutionInstructedByClient: 7;
readonly LargeInScale: 8;
readonly Hidden: 9;
readonly SubjectToEUSTO: 10;
readonly SubjectToUKSTO: 11;
readonly RepresentativeOrder: 12;
readonly LinkageType: 13;
readonly ExemptFromSTO: 14;
}>;