Class ProblemDetails
ProblemDetails
Inherited Members
Namespace: Unity.Services.Apis.Matchmaker
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "ProblemDetails")]
[Preserve]
public class ProblemDetails
Constructors
ProblemDetails(string, string, object, int?, string, string)
Initializes a new instance of the Problem
Declaration
[Preserve]
public ProblemDetails(string type = null, string title = null, object errors = null, int? status = null, string detail = null, string instance = null)
Parameters
Type | Name | Description |
---|---|---|
string | type | type. |
string | title | title. |
object | errors | errors. |
int? | status | status. |
string | detail | detail. |
string | instance | instance. |
Properties
Detail
Gets or Sets Detail
Declaration
[DataMember(Name = "detail", EmitDefaultValue = true)]
[Preserve]
public string Detail { get; set; }
Property Value
Type | Description |
---|---|
string |
Errors
Gets or Sets Errors
Declaration
[DataMember(Name = "errors", EmitDefaultValue = true)]
[Preserve]
public object Errors { get; set; }
Property Value
Type | Description |
---|---|
object |
Instance
Gets or Sets Instance
Declaration
[DataMember(Name = "instance", EmitDefaultValue = true)]
[Preserve]
public string Instance { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
Gets or Sets Status
Declaration
[DataMember(Name = "status", EmitDefaultValue = true)]
[Preserve]
public int? Status { get; set; }
Property Value
Type | Description |
---|---|
int? |
Title
Gets or Sets Title
Declaration
[DataMember(Name = "title", EmitDefaultValue = true)]
[Preserve]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or Sets Type
Declaration
[DataMember(Name = "type", EmitDefaultValue = true)]
[Preserve]
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |