Class ConflictDeleteItemInUseErrorResponse
An error response sent back upon item in use
Inherited Members
Namespace: Unity.Services.Apis.Admin.Economy
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "conflict-delete-item-in-use-error-response")]
[Preserve]
public class ConflictDeleteItemInUseErrorResponse
Constructors
ConflictDeleteItemInUseErrorResponse(string, string, int, int, string, ConflictDeleteItemInUseErrorResponseData)
Initializes a new instance of the Conflict
Declaration
[Preserve]
public ConflictDeleteItemInUseErrorResponse(string type = null, string title = null, int status = 0, int code = 0, string detail = null, ConflictDeleteItemInUseErrorResponseData data = null)
Parameters
Type | Name | Description |
---|---|---|
string | type | type (required). |
string | title | title (required). |
int | status | status (required). |
int | code | code (required). |
string | detail | detail (required). |
Conflict |
data | data (required). |
Properties
Code
Gets or Sets Code
Declaration
[DataMember(Name = "code", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Code { get; set; }
Property Value
Type | Description |
---|---|
int |
Data
Gets or Sets Data
Declaration
[DataMember(Name = "data", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public ConflictDeleteItemInUseErrorResponseData Data { get; set; }
Property Value
Type | Description |
---|---|
Conflict |
Detail
Gets or Sets Detail
Declaration
[DataMember(Name = "detail", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Detail { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
Gets or Sets Status
Declaration
[DataMember(Name = "status", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public int Status { get; set; }
Property Value
Type | Description |
---|---|
int |
Title
Gets or Sets Title
Declaration
[DataMember(Name = "title", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or Sets Type
Declaration
[DataMember(Name = "type", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |