Class AuthenticationError
AuthenticationError
Inherited Members
Namespace: Unity.Services.Apis.PlayerAuthentication
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "AuthenticationError")]
[Preserve]
public class AuthenticationError
Constructors
AuthenticationError(string, int, string, List<AuthenticationErrorDetailsInner>)
Initializes a new instance of the Authentication
Declaration
[Preserve]
public AuthenticationError(string title = null, int status = 0, string detail = null, List<AuthenticationErrorDetailsInner> details = null)
Parameters
Type | Name | Description |
---|---|---|
string | title | title (required). |
int | status | status (required). |
string | detail | detail (required). |
List<Authentication |
details | details. |
Properties
Detail
Gets or Sets Detail
Declaration
[DataMember(Name = "detail", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Detail { get; set; }
Property Value
Type | Description |
---|---|
string |
Details
Gets or Sets Details
Declaration
[DataMember(Name = "details", EmitDefaultValue = false)]
[Preserve]
public List<AuthenticationErrorDetailsInner> Details { get; set; }
Property Value
Type | Description |
---|---|
List<Authentication |
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 |