Skip to main content

ResponseError

Error information pertaining to a particular named field. Used for returning multiple field validation errors.s

Assembly: ServiceStack.Interfaces.dll
View Source
Declaration
[DataContract]
public class ResponseError : IMeta

Properties

ErrorCode

View Source
Declaration
[DataMember(Order = 1)]
public string ErrorCode { get; set; }

FieldName

View Source
Declaration
[DataMember(Order = 2)]
public string FieldName { get; set; }

Message

View Source
Declaration
[DataMember(Order = 3)]
public string Message { get; set; }

Meta

View Source
Declaration
[DataMember(Order = 4)]
public Dictionary<string, string> Meta { get; set; }

Implements