To Reproduce
call huobiClient.GetOpenOrdersAsync(...) and you will see that all returned orders have an empty ClientOrderId property
Expected behavior
ClientOrderId property is filled by value. To to achieve it ClientOrderId property should be marked with [JsonProperty("client-order-id")] attribute
Describe the bug According to https://huobiapi.github.io/docs/spot/v1/en/#get-all-open-orders "client-order-id" property is returned by "Get All Open Orders" method, however in current library implementation it is missed
To Reproduce call huobiClient.GetOpenOrdersAsync(...) and you will see that all returned orders have an empty ClientOrderId property Expected behavior ClientOrderId property is filled by value. To to achieve it ClientOrderId property should be marked with [JsonProperty("client-order-id")] attribute