go-types/pkg/database/timetable.go

28 lines
446 B
Go
Raw Normal View History

2023-07-17 12:20:31 +01:00
package database
import (
"time"
)
type Stop struct {
publicDeparture *string
wttDeparture *string
publicArrival *string
wttArrival *string
isPublic bool
tiploc string
}
type Service struct {
transactionType string
stpIndicator string
operator string
trainUid string
headcode string
powerType string
planSpeed string
scheduleStartDate time.Time
scheduleEndDate time.Time
daysRun []string
stops []Stop
}