`TradeUpdate` appears to map the event id to the `execution_id` field, whereas the api is returning an `id` field. Seeing this when using `updatesStream()`: ```java alpacaAPI.updatesStream().setListener(tradeUpdate -> { assert tradeUpdate.getData().getExecutionId() != null; }); ```