Class MatchProperties
MatchProperties model
Inherited Members
Namespace: Unity.Services.Matchmaker.Models
Syntax
[Preserve]
public class MatchProperties
Constructors
MatchProperties(List<Team>, List<Player>, String, String)
Creates an instance of MatchProperties.
Declaration
[Preserve]
public MatchProperties(List<Team> teams = null, List<Player> players = null, string region = null, string backfillTicketId = null)
Parameters
Type | Name | Description |
---|---|---|
List<Team> | teams | The list of teams in the match. |
List<Player> | players | The list of players in the match. |
String | region | The region where the server is allocated. |
String | backfillTicketId | The unique ID of the backfill ticket. |
Properties
BackfillTicketId
The unique ID of the backfill ticket.
Declaration
[Preserve]
public string BackfillTicketId { get; }
Property Value
Type | Description |
---|---|
String |
Players
The list of players in the match.
Declaration
[Preserve]
public List<Player> Players { get; }
Property Value
Type | Description |
---|---|
List<Player> |
Region
The region where the server is allocated.
Declaration
[Preserve]
public string Region { get; }
Property Value
Type | Description |
---|---|
String |
Teams
The list of teams in the match.
Declaration
[Preserve]
public List<Team> Teams { get; }
Property Value
Type | Description |
---|---|
List<Team> |