1 2 3 4 5 6 7 8 9 10
package dto import ( "time" ) type GetScheduleResponse struct { Schedule interface{} `json:"schedule"` LastUpdated time.Time `json:"lastUpdated"` }