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"` }