Class Error
Container for the Error
Inheritance
System.Object
Error
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class Error
Properties
| Improve this Doc View SourceErrorMessages
The list of error messages
Declaration
[JsonProperty(PropertyName = "errorMessages")]
public IList<string> ErrorMessages { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
Errors
A list of errors
Declaration
[JsonProperty(PropertyName = "errors")]
public IDictionary<string, string> Errors { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.String> |
Message
The message
Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
StatusCode
The HTTP status code of the error
Declaration
[JsonProperty(PropertyName = "status-code")]
public int StatusCode { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |