Class MatchProperties
MatchProperties
Inherited Members
Namespace: Unity.Services.Apis.Matchmaker
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "MatchProperties")]
[Preserve]
public class MatchProperties
Constructors
MatchProperties(List<Team>, List<Player>, string, string)
Initializes a new instance of the Match
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
[DataMember(Name = "backfillTicketId", EmitDefaultValue = false)]
[Preserve]
public string BackfillTicketId { get; set; }
Property Value
Type | Description |
---|---|
string | The unique ID of the backfill ticket. |
Players
The list of players in the match.
Declaration
[DataMember(Name = "players", EmitDefaultValue = false)]
[Preserve]
public List<Player> Players { get; set; }
Property Value
Region
The region where the server is allocated.
Declaration
[DataMember(Name = "region", EmitDefaultValue = false)]
[Preserve]
public string Region { get; set; }
Property Value
Type | Description |
---|---|
string | The region where the server is allocated. |
Teams
The list of teams in the match.
Declaration
[DataMember(Name = "teams", EmitDefaultValue = false)]
[Preserve]
public List<Team> Teams { get; set; }