Class BackfillTicket
User-facing BackfillTicket model.
Inherited Members
Namespace: Unity.Services.Matchmaker.Models
Assembly: Unity.Services.Multiplayer.dll
Syntax
public class BackfillTicket
Constructors
BackfillTicket(string, string, Dictionary<string, object>, BackfillTicketProperties)
Creates an instance of BackfillTicket.
Declaration
public BackfillTicket(string id = null, string connection = null, Dictionary<string, object> attributes = null, BackfillTicketProperties properties = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Backfill Ticket ID |
| string | connection | Connection address (IPv4 string format, no port) |
| Dictionary<string, object> | attributes | Matchmaker ticket attributes |
| BackfillTicketProperties | properties | Matchmaker properties (match info, players etc.) |
Properties
Attributes
Matchmaker ticket attributes
Declaration
public Dictionary<string, object> Attributes { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, object> |
Connection
Connection address (IPv4 string format, no port)
Declaration
public string Connection { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
Backfill Ticket ID
Declaration
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Properties
Matchmaker properties (match info, players etc.)
Declaration
public BackfillTicketProperties Properties { get; set; }
Property Value
| Type | Description |
|---|---|
| BackfillTicketProperties |