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

Constructors

Link copied to clipboard
constructor(teamId: Int, rank: Int, won: Boolean, players: List<MatchPlayer>)

Properties

Link copied to clipboard

An array of references to participant players

Link copied to clipboard
val rank: Int

This participant's placement in the match minimum: 1 maximum: 130

Link copied to clipboard
val teamId: Int

An arbitrary ID assigned to this participant within the match

Link copied to clipboard

Indicates if this participant won the match