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
337 B
Go

package tacitus
type Confirmation struct {
Id int `json:"id"`
Product string `json:"product"`
LastTradeId int `json:"last_trade_id"`
}
type ConfirmationService interface {
Confirmation(product string) (*Confirmation, error)
CreateConfirmation(c *Confirmation) error
UpdateConfirmation(c *Confirmation) error
}