Skip to content

Commit

Permalink
refactor: use defined type
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokisan committed Dec 12, 2023
1 parent 07a42d2 commit 951bde7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions v5_asset_service.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package bybit

import (
"github.com/google/go-querystring/query"
"strings"

"github.com/google/go-querystring/query"
)

// V5AssetServiceI :
Expand Down Expand Up @@ -374,7 +375,7 @@ type V5GetAllCoinsBalanceResponse struct {
// V5GetAllCoinsBalanceResult :
type V5GetAllCoinsBalanceResult struct {
MemberId string `json:"memberId"`
AccountType string `json:"accountType"`
AccountType AccountType `json:"accountType"`
Balance []*V5GetAllCoinsBalanceBalance `json:"balance"`
}

Expand Down

0 comments on commit 951bde7

Please sign in to comment.