Class ActionLog
Action Log from the server. See https://services.docs.unity.com/multiplay-config/v1/#tag/Servers/operation/GetServerActions for details
Implements
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.MultiplayApi
Assembly: Unity.Services.Multiplayer.Multiplay.Authoring.Core.dll
Syntax
public record ActionLog : IEquatable<ActionLog>
Constructors
ActionLog(long, long, long, long, string, DateTime, string)
Action Log from the server. See https://services.docs.unity.com/multiplay-config/v1/#tag/Servers/operation/GetServerActions for details
Declaration
public ActionLog(long Id, long ServerID, long ActionID, long MachineID, string Message, DateTime Date, string Attachment = null)
Parameters
Type | Name | Description |
---|---|---|
long | Id | ID of the action log |
long | ServerID | ID of the associated server |
long | ActionID | ID of the action logged |
long | MachineID | ID of the associated machine |
string | Message | Message with the action log |
Date |
Date | Date of the action |
string | Attachment | Attachment with the Action Log |
Properties
ActionID
ID of the action logged
Declaration
public long ActionID { get; init; }
Property Value
Type | Description |
---|---|
long |
Attachment
Attachment with the Action Log
Declaration
public string Attachment { get; init; }
Property Value
Type | Description |
---|---|
string |
Date
Date of the action
Declaration
public DateTime Date { get; init; }
Property Value
Type | Description |
---|---|
Date |
Id
ID of the action log
Declaration
public long Id { get; init; }
Property Value
Type | Description |
---|---|
long |
MachineID
ID of the associated machine
Declaration
public long MachineID { get; init; }
Property Value
Type | Description |
---|---|
long |
Message
Message with the action log
Declaration
public string Message { get; init; }
Property Value
Type | Description |
---|---|
string |
ServerID
ID of the associated server
Declaration
public long ServerID { get; init; }
Property Value
Type | Description |
---|---|
long |