diff --git a/rest/private/orders/place-order.go b/rest/private/orders/place-order.go index 54e6ee9..f83272b 100644 --- a/rest/private/orders/place-order.go +++ b/rest/private/orders/place-order.go @@ -35,10 +35,10 @@ type ResponseForPlaceOrder struct { RemainingSize float64 `json:"remainingSize"` FilledSize float64 `json:"filledSize"` - ID int `json:"id"` - Ioc bool `json:"ioc"` - PostOnly bool `json:"postOnly"` - ReduceOnly bool `json:"reduceOnly"` + ID int64 `json:"id"` + Ioc bool `json:"ioc"` + PostOnly bool `json:"postOnly"` + ReduceOnly bool `json:"reduceOnly"` CreatedAt time.Time `json:"createdAt"` }