mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
16 lines
397 B
Go
16 lines
397 B
Go
package binanceapi
|
|
|
|
import "encoding/json"
|
|
|
|
type PagedDataResponse struct {
|
|
Status string `json:"status"`
|
|
Type string `json:"type"`
|
|
Code string `json:"code"`
|
|
Data struct {
|
|
Page int `json:"page"`
|
|
TotalRecords int `json:"totalRecords"`
|
|
TotalPageNum int `json:"totalPageNum"`
|
|
Data json.RawMessage `json:"data"`
|
|
} `json:"data"`
|
|
}
|