Skip to content

Commit

Permalink
Release: v1.0.18-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-the-h committed Oct 2, 2021
1 parent 06802e6 commit 95b23b3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Changelog
=========
All notable changes to this project will be documented in this file.

v1.0.18-alpha
------------

### Changed

- Renamed subaccount models filed names

v1.0.17-alpha
------------

Expand Down
10 changes: 5 additions & 5 deletions models/subaccount/subaccount_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ type (
APIKey struct {
SubAcct string `json:"subAcct,omitempty"`
Label string `json:"label,omitempty"`
ApiKey string `json:"apiKey,omitempty"`
APIKey string `json:"apiKey,omitempty"`
SecretKey string `json:"secretKey,omitempty"`
Passphrase string `json:"Passphrase,omitempty"`
Perm string `json:"perm,omitempty"`
Ip string `json:"ip,omitempty"`
IP string `json:"ip,omitempty"`
TS okex.JSONTime `json:"ts,omitempty"`
}
HistoryTransfer struct {
SubAcct string `json:"subAcct,omitempty"`
Ccy string `json:"ccy,omitempty"`
BillId okex.JSONInt64 `json:"billId,omitempty"`
Type okex.BillType `json:"type,string,omitempty,string"`
BillID okex.JSONInt64 `json:"billId,omitempty"`
Type okex.BillType `json:"type,omitempty,string"`
TS okex.JSONTime `json:"ts,omitempty"`
}
Transfer struct {
TransId okex.JSONInt64 `json:"transId"`
TransID okex.JSONInt64 `json:"transId"`
}
)

0 comments on commit 95b23b3

Please sign in to comment.