MatchParticipant
data class MatchParticipant(val teamId: Int, val rank: Int, val won: Boolean, val players: List<MatchPlayer>)
MatchParticipant track the scores of each opposing group of participants. players can have one or many participants depending on the game mode. MatchParticipant objects are only meaningful within the context of a match and are not exposed as a standalone resource