BetaTrader
A HFT Eco-System
Loading...
Searching...
No Matches
Reject.h
Go to the documentation of this file.
1
6#pragma once
7
8#include "common_fix/Types.h"
9#include <string>
10
11namespace fix
12{
13
19struct Reject
20{
23
25 std::string text;
26
27 // Other fields like RefTagID(371), SessionRejectReason(373) can be added here.
28};
29
30} // namespace fix
Defines type aliases for FIX protocol fields.
Definition ExecutionReport.h:6
uint64_t SequenceNumber
Type alias for a message sequence number.
Definition Types.h:18
Represents the data required to build a FIX Session-Level Reject (35=3) message.
Definition Reject.h:20
fix::SequenceNumber refSeqNum
The sequence number of the message being rejected (RefSeqNum, FIX Tag 45).
Definition Reject.h:22
std::string text
A human-readable explanation of the rejection reason (Text, FIX Tag 58).
Definition Reject.h:25