From 55104db21f9277bed583bb7fb11b28e1fa42bab0 Mon Sep 17 00:00:00 2001 From: x1nchen Date: Wed, 8 Nov 2023 15:57:13 +0800 Subject: [PATCH] feat: GET /fapi/v2/account: Add new field tradeGroupId in response to show user's tradeGroupId --- futures/account_service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/futures/account_service.go b/futures/account_service.go index ac77652..2f3c083 100644 --- a/futures/account_service.go +++ b/futures/account_service.go @@ -57,6 +57,7 @@ type Account struct { CanWithdraw bool `json:"canWithdraw"` FeeTier int `json:"feeTier"` MultiAssetsMargin bool `json:"multiAssetsMargin"` + TradeGroupID int64 `json:"tradeGroupId"` MaxWithdrawAmount string `json:"maxWithdrawAmount"` Positions []*AccountPosition `json:"positions"` TotalInitialMargin string `json:"totalInitialMargin"`