Class StoredMatchmakingResults
Represents the data that is stored by the Matchmaker service when a match is created
Inheritance
Namespace: Unity.Services.Matchmaker.Models
Assembly: solution.dll
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 |
| string | generatorName | generatorName param |
| string | queueName | Matchmaking queue that created the match. |
| string | poolName | Matchmaking pool that created the match. |
| string | environmentId | Unity Gaming Services Project Environment ID. |
| string | backfillTicketId | The unique ID of the backfill ticket. |
| string | matchId | Unique ID of the match. |
| 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 |
|---|---|
| string |
EnvironmentId
Unity Gaming Services Project Environment ID.
Declaration
public string EnvironmentId { get; }
Property Value
| Type | Description |
|---|---|
| string |
GeneratorName
Parameter generatorName of StoredMatchmakingResults
Declaration
public string GeneratorName { get; }
Property Value
| Type | Description |
|---|---|
| string |
MatchId
Unique ID of the match.
Declaration
public string MatchId { get; }
Property Value
| Type | Description |
|---|---|
| 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 |
|---|---|
| string |
PoolName
Matchmaking pool that created the match.
Declaration
public string PoolName { get; }
Property Value
| Type | Description |
|---|---|
| string |
QueueName
Matchmaking queue that created the match.
Declaration
public string QueueName { get; }
Property Value
| Type | Description |
|---|---|
| string |