Class MatchTeamResult
Results for each team
Namespace: Unity.PSN.PS5.Matches
Syntax
public class MatchTeamResult
Properties
IsScoreSet
Is the score value valid
Declaration
public bool IsScoreSet { get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean |
Rank
Value indicating the ranking of the team
Declaration
public int Rank { get; set; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Score
Score of the team. Provided if the match's ResultsType is Score.
Declaration
public double Score { get; set; }
Property Value
| Type | Description |
|---|---|
| Double |
TeamId
Application-defined team ID
Declaration
public string TeamId { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
TeamMemberResults
Results for each member of the team Used to display the scores (degree of contribution to the team) of each member of the team.
Declaration
public List<MatchTeamMemberResult> TeamMemberResults { get; set; }
Property Value
| Type | Description |
|---|---|
| List<MatchTeamMemberResult> |