Fixture Summary

Represents the summary of the fixture details.

Properties

isTied boolean

Is the match currently in a tied state?

Information for each period.

awayTeamScore integer

The away team score.

homeTeamScore integer

The home team score.

currentPeriod integer

The current period.

currentStatus string

collectionStatus

currentClockTime time

The clock time of the action.

isHomeTeamInPossession boolean

Is the home team in possession of the ball?

finished boolean

Inidicates the match has finished and no more packets will be sent

currentClockState String

  1. Running

  2. Stopped

reason

A collection status reason is an identifier used in our sports betting system to indicate pauses or interruptions in a live sports event. It ensures accurate reporting and management of temporary breaks or end-of-session scenarios, providing clarity for operators and users.

reasonId

Unique Reason Identifier

Sample Payload

"fixtureSummary": {
            "isTied": true,
            "periods": [],
            "finished": false,
            "awayTeamScore": 0,
            "currentPeriod": 1,
            "currentStatus": "Scheduled",
            "homeTeamScore": 0,
            "collectionStatus": "CollectionScheduled",
            "currentClockTime": "00:00",
            "isHomeTeamInPossesion": true,
            "reason": "End of session",
            "reasonId": 20
        }

Last updated