Order order = execution.Order;
Print( order.OrderId);
Print(order.Id);
When I print out the two values I get something like ID: 7401 OrderID: 415464669
Am I able to assume that order.ID will remain constant, or can it change in the same way the OrderId can change?

Comment