package metadata
type Chapter struct {
// The start time of the chapter in seconds
StartTime float64 `json:"start_time"`
// The end time of the chapter in seconds
EndTime float64 `json:"end_time"`
Title *string `json:"title"`
}