Class MigrationDataInfo
The migration data information of a lobby.
Inheritance
object
MigrationDataInfo
Namespace: Unity.Services.Lobbies.Models
Assembly: solution.dll
Syntax
public class MigrationDataInfo
Constructors
MigrationDataInfo(string, string, DateTime, int)
The migration data information of a lobby.
Declaration
public MigrationDataInfo(string write = null, string read = null, DateTime expires = null, int maxSize = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | write | The migration data write url. |
| string | read | The migration data read url. |
| DateTime | expires | When the urls will expire. The timestamp is in UTC and conforms to ISO 8601. |
| int | maxSize | The max size of migration data in bytes. |
Properties
Expires
When the urls will expire. The timestamp is in UTC and conforms to ISO 8601.
Declaration
public DateTime Expires { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
MaxSize
The max size of migration data in bytes.
Declaration
public int MaxSize { get; }
Property Value
| Type | Description |
|---|---|
| int |
Read
The migration data read url.
Declaration
public string Read { get; }
Property Value
| Type | Description |
|---|---|
| string |
Write
The migration data write url.
Declaration
public string Write { get; }
Property Value
| Type | Description |
|---|---|
| string |