Table of Contents

Interface IMatchStatus

Namespace
Sportradar.OddsFeed.SDK.Entities.Rest
Assembly
Sportradar.OddsFeed.SDK.dll

Defines a contract implemented by classes representing a match status

public interface IMatchStatus : ICompetitionStatus
Inherited Members

Properties

AwayPenaltyScore

Gets the penalty score of the away competitor competing on the associated sport event (for Ice Hockey)

int? AwayPenaltyScore { get; }

Property Value

int?

AwayScore

Gets the score of the away competitor competing on the associated sport event

decimal? AwayScore { get; }

Property Value

decimal?

The score of the away competitor competing on the associated sport event

DecidedByFed

Gets the indicator wither the event is decided by fed

bool? DecidedByFed { get; }

Property Value

bool?

EventClock

Gets the IEventClock instance describing the timings in the current event

IEventClock EventClock { get; }

Property Value

IEventClock

The IEventClock instance describing the timings in the current event

HomePenaltyScore

Gets the penalty score of the home competitor competing on the associated sport event (for Ice Hockey)

int? HomePenaltyScore { get; }

Property Value

int?

HomeScore

Gets the score of the home competitor competing on the associated sport event

decimal? HomeScore { get; }

Property Value

decimal?

The score of the home competitor competing on the associated sport event

PeriodScores

Gets the list of IPeriodScore

IEnumerable<IPeriodScore> PeriodScores { get; }

Property Value

IEnumerable<IPeriodScore>

The list of IPeriodScore

Statistics

Gets the match statistics

IMatchStatistics Statistics { get; }

Property Value

IMatchStatistics

The match statistics

Methods

GetMatchStatusAsync(CultureInfo)

Asynchronously gets the match status

Task<ILocalizedNamedValue> GetMatchStatusAsync(CultureInfo culture)

Parameters

culture CultureInfo

The culture used to get match status id and description

Returns

Task<ILocalizedNamedValue>

Returns the match status id and description in selected culture

See Also