This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/gdax/trade_response.go
2017-10-05 19:33:50 -07:00

16 lines
298 B
Go

package gdax
import (
"github.com/shopspring/decimal"
"time"
)
type tradeResponse struct {
Time time.Time `json:"time"`
TradeId int `json:"trade_id"`
Price decimal.Decimal `json:"price"`
Size decimal.Decimal `json:"size"`
Side string `json:"side"`
}