Class StoredMatchmakingResults
Represents the data that is stored by the Matchmaker service when a match is created
Inheritance
Inherited Members
Namespace: Unity.Services.Matchmaker.Models
Syntax
public class StoredMatchmakingResults
Constructors
StoredMatchmakingResults(StoredMatchProperties, String, String, String, String, String, String, String)
Represents the data that is stored by the Matchmaker service when a match is created
Declaration
public StoredMatchmakingResults(StoredMatchProperties matchProperties = null, string generatorName = null, string queueName = null, string poolName = null, string environmentId = null, string backfillTicketId = null, string matchId = null, string poolId = null)
Parameters
Type | Name | Description |
---|---|---|
StoredMatchProperties | matchProperties | matchProperties param |
System.String | generatorName | generatorName param |
System.String | queueName | Matchmaking queue that created the match. |
System.String | poolName | Matchmaking pool that created the match. |
System.String | environmentId | Unity Gaming Services Project Environment ID. |
System.String | backfillTicketId | The unique ID of the backfill ticket. |
System.String | matchId | Unique ID of the match. |
System.String | poolId | The ID of pool that the match is in. |
Properties
BackfillTicketId
The unique ID of the backfill ticket.
Declaration
public string BackfillTicketId { get; }
Property Value
Type | Description |
---|---|
System.String |
EnvironmentId
Unity Gaming Services Project Environment ID.
Declaration
public string EnvironmentId { get; }
Property Value
Type | Description |
---|---|
System.String |
GeneratorName
Parameter generatorName of StoredMatchmakingResults
Declaration
public string GeneratorName { get; }
Property Value
Type | Description |
---|---|
System.String |
MatchId
Unique ID of the match.
Declaration
public string MatchId { get; }
Property Value
Type | Description |
---|---|
System.String |
MatchProperties
Parameter matchProperties of StoredMatchmakingResults
Declaration
public StoredMatchProperties MatchProperties { get; }
Property Value
Type | Description |
---|---|
StoredMatchProperties |
PoolId
The ID of pool that the match is in.
Declaration
public string PoolId { get; }
Property Value
Type | Description |
---|---|
System.String |
PoolName
Matchmaking pool that created the match.
Declaration
public string PoolName { get; }
Property Value
Type | Description |
---|---|
System.String |
QueueName
Matchmaking queue that created the match.
Declaration
public string QueueName { get; }
Property Value
Type | Description |
---|---|
System.String |