Table of Contents

Interface IBasicTournament

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

Defines a contract for classes implementing tournament information

public interface IBasicTournament : ILongTermEvent, ISportEvent
Inherited Members

Methods

GetCategoryAsync()

Asynchronously gets the category

Task<ICategorySummary> GetCategoryAsync()

Returns

Task<ICategorySummary>

The category

GetCompetitorsAsync()

Asynchronously gets the competitors

Task<IEnumerable<ICompetitor>> GetCompetitorsAsync()

Returns

Task<IEnumerable<ICompetitor>>

The competitors

GetExhibitionGamesAsync()

Asynchronously gets a bool specifying if the tournament is exhibition game

Task<bool?> GetExhibitionGamesAsync()

Returns

Task<bool?>

A bool specifying if the tournament is exhibition game

GetScheduleAsync()

Gets the list of all ICompetition that belongs to the basic tournament schedule

Task<IEnumerable<ISportEvent>> GetScheduleAsync()

Returns

Task<IEnumerable<ISportEvent>>

The list of all ICompetition that belongs to the basic tournament schedule

See Also