interface MatchDto {
    coaches: CoachDto[];
    matchInfo: MatchInfoDto;
    players: MatchV1.PlayerDto[];
    roundResults: RoundResultDto[];
    teams: TeamDto[];
}

Properties

coaches: CoachDto[]
matchInfo: MatchInfoDto
players: MatchV1.PlayerDto[]
roundResults: RoundResultDto[]
teams: TeamDto[]