qbtrade/pkg/datasource/wise/rate.go

11 lines
251 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package wise
import "git.qtrade.icu/lychiyu/qbtrade/pkg/fixedpoint"
type Rate struct {
Value fixedpoint.Value `json:"rate"`
Target string `json:"target"`
Source string `json:"source"`
Time Time `json:"time"`
}