qbtrade/pkg/datasource/wise/rate.go
2024-06-27 22:42:38 +08:00

11 lines
251 B
Go

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