Class MultiplayConflictItem
A conflict blocking an operation.
Inherited Members
Namespace: Unity.Services.Apis.Admin.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "multiplay.conflictItem")]
[Preserve]
public class MultiplayConflictItem
Constructors
MultiplayConflictItem(MultiplayConflictType, string, string, string)
Initializes a new instance of the Multiplay
Declaration
[Preserve]
public MultiplayConflictItem(MultiplayConflictType conflictType = (MultiplayConflictType)0, string reason = null, string resourceId = null, string resourceType = null)
Parameters
Type | Name | Description |
---|---|---|
Multiplay |
conflictType | conflictType (required). |
string | reason | The reason why this object is conflicting with the operation. (required). |
string | resourceId | Unique identifier for this type of conflicting resource. (required). |
string | resourceType | The type of resource causing the conflict. (required). |
Properties
ConflictType
Gets or Sets ConflictType
Declaration
[DataMember(Name = "conflictType", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public MultiplayConflictType ConflictType { get; set; }
Property Value
Type | Description |
---|---|
Multiplay |
Reason
The reason why this object is conflicting with the operation.
Declaration
[DataMember(Name = "reason", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Reason { get; set; }
Property Value
Type | Description |
---|---|
string | The reason why this object is conflicting with the operation. |
ResourceId
Unique identifier for this type of conflicting resource.
Declaration
[DataMember(Name = "resourceId", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string ResourceId { get; set; }
Property Value
Type | Description |
---|---|
string | Unique identifier for this type of conflicting resource. |
ResourceType
The type of resource causing the conflict.
Declaration
[DataMember(Name = "resourceType", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string ResourceType { get; set; }
Property Value
Type | Description |
---|---|
string | The type of resource causing the conflict. |