diff --git a/api_types.go b/api_types.go index 470559a..a361b83 100644 --- a/api_types.go +++ b/api_types.go @@ -86,6 +86,14 @@ type FixturesResponse struct { // Contains information about a fixture's results. type FixtureResult struct { + FixtureScore + + HalfTime *FixtureScore + ExtraTime *FixtureScore + PenaltyShootout *FixtureScore +} + +type FixtureScore struct { GoalsHomeTeam uint16 GoalsAwayTeam uint16 }