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/confirmation.go

14 lines
366 B
Go
Raw Normal View History

2017-09-22 07:24:42 -07:00
package tacitus
type Confirmation struct {
Id int `json:"id"`
Product string `json:"product"`
LastTradeId int `json:"last_trade_id"`
}
type ConfirmationService interface {
2017-09-23 11:00:50 -07:00
Confirmation(product string) (Confirmation, error)
CreateConfirmation(c Confirmation) (Confirmation, error)
UpdateConfirmation(c Confirmation) (Confirmation, error)
2017-09-22 07:24:42 -07:00
}