qbtrade/pkg/types/fundingrate.go

14 lines
189 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package types
import (
"time"
"git.qtrade.icu/lychiyu/qbtrade/pkg/fixedpoint"
)
type FundingRate struct {
FundingRate fixedpoint.Value
FundingTime time.Time
Time time.Time
}