Joel Grunbaum
2022-01-20 441abf1e6a15a39f1ef7bf5e4ee2a4a43bff327b
json.hpp
@@ -82,7 +82,7 @@
                   std::chrono::nanoseconds expiry, double aggFee,
                   double pasFee, double broFee, uint64_t sequence,
                   double timestamp);
    std::string as_string();
   std::string as_string();
};
struct SettleMessage : public FromExchange {
@@ -92,7 +92,7 @@
   SettleMessage(MessageTypes type, std::string product,
                 std::string stationName, std::chrono::nanoseconds expiry,
                 double price, uint64_t sequence, double timestamp);
    std::string as_string();
   std::string as_string();
};
struct AddMessage : public ToExchange {
@@ -110,10 +110,11 @@
   double price;
   uint64_t filled;
   uint64_t resting;
    std::string owner;
   std::string owner;
   AddedMessage(MessageTypes type, std::string product, std::string id,
                book::OrderSideEnum side, double price, uint64_t filled,
                uint64_t resting, std::string owner, uint64_t sequence, double timestamp);
                uint64_t resting, std::string owner, uint64_t sequence,
                double timestamp);
   std::string as_string();
};