Class MatchTeamCreateParams
Parameters for creating a team in a match.
Namespace: Unity.PSN.PS5.Matches
Syntax
public class MatchTeamCreateParams
Constructors
MatchTeamCreateParams(String)
MatchTeam Constructor. Must provide a unique team id
Declaration
public MatchTeamCreateParams(string teamId)
Parameters
| Type | Name | Description |
|---|---|---|
| String | teamId | Unique team id |
Properties
TeamId
Application-defined team ID
Declaration
public string TeamId { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
TeamMembers
List of players belonging to the team A player can only belong to one team at a time
Declaration
public List<MatchPlayerCreateParams> TeamMembers { get; set; }
Property Value
| Type | Description |
|---|---|
| List<MatchPlayerCreateParams> |
TeamName
Application-defined name of team Used when displaying match results on the platform. If nothing is specified, the system default name will be used
Declaration
public string TeamName { get; set; }
Property Value
| Type | Description |
|---|---|
| String |