package sentio

type Order interface {
	Market() string
	AccountId() string

	GetId() string
	GetSymbol() string
	GetAction() OrderAction
	GetTimeInForce() TimeInForce
	GetSize() float64
	GetPrice() float64
	GetCurrency() string
	GetStatus() string
}