From 8c3f206ef6547772d0c3df2717a13963ce2ba1b0 Mon Sep 17 00:00:00 2001 From: sbrajchuk <78134229+sbrajchuk@users.noreply.github.com> Date: Tue, 27 Jul 2021 15:59:32 +0300 Subject: [PATCH] Add OrderListId field to Order struct (#286) --- v2/order_service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/v2/order_service.go b/v2/order_service.go index 0c92e935..a5dc673c 100644 --- a/v2/order_service.go +++ b/v2/order_service.go @@ -467,6 +467,7 @@ func (s *GetOrderService) Do(ctx context.Context, opts ...RequestOption) (res *O type Order struct { Symbol string `json:"symbol"` OrderID int64 `json:"orderId"` + OrderListId int64 `json:"orderListId"` ClientOrderID string `json:"clientOrderId"` Price string `json:"price"` OrigQuantity string `json:"origQty"`