package models import ( "database/sql" ) type NextMachineBallsetPrediction struct { NextDrawDate string CurrentMachine string EstimatedNextMachine string MachineTransitionPct float64 CurrentBallset sql.NullString EstimatedNextBallset sql.NullString BallsetTransitionPct sql.NullFloat64 }