Class MultiplayBuildsBuildInstallFailure
A single build install failure
Inherited Members
Namespace: Unity.Services.Apis.Admin.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "multiplay.builds.buildInstallFailure")]
[Preserve]
public class MultiplayBuildsBuildInstallFailure
Constructors
MultiplayBuildsBuildInstallFailure(long, string, DateTime)
Initializes a new instance of the Multiplay
Declaration
[Preserve]
public MultiplayBuildsBuildInstallFailure(long machineID = 0, string reason = null, DateTime updated = default)
Parameters
Type | Name | Description |
---|---|---|
long | machineID | Machine ID (required). |
string | reason | Reason of the install failure (required). |
Date |
updated | The time the install job was last updated (required). |
Properties
MachineID
Machine ID
Declaration
[DataMember(Name = "machineID", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public long MachineID { get; set; }
Property Value
Type | Description |
---|---|
long | Machine ID |
Reason
Reason of the install failure
Declaration
[DataMember(Name = "reason", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Reason { get; set; }
Property Value
Type | Description |
---|---|
string | Reason of the install failure |
Updated
The time the install job was last updated
Declaration
[DataMember(Name = "updated", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public DateTime Updated { get; set; }
Property Value
Type | Description |
---|---|
Date |
The time the install job was last updated |