Class Detail
Details about the internal error.
Inherited Members
Namespace: Unity.Services.Apis.Friends
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "Detail")]
[Preserve]
public class Detail
Constructors
Detail(string, string)
Initializes a new instance of the Detail class.
Declaration
[Preserve]
public Detail(string error = null, string message = null)
Parameters
Type | Name | Description |
---|---|---|
string | error | Path to the parameter within the body that is invalid. (required). |
string | message | Detailed message about the error. (required). |
Properties
Error
Path to the parameter within the body that is invalid.
Declaration
[DataMember(Name = "error", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Error { get; set; }
Property Value
Type | Description |
---|---|
string | Path to the parameter within the body that is invalid. |
Message
Detailed message about the error.
Declaration
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string | Detailed message about the error. |