Class ValidationError
ValidationError model
Inherited Members
Namespace: Unity.Services.Ccd.Management.Models
Assembly: Unity.Services.Ccd.Management.dll
Syntax
[Preserve]
[DataContract(Name = "ValidationError")]
public class ValidationError
Constructors
ValidationError(string, int, string, List<object>, string)
Creates an instance of ValidationError.
Declaration
[Preserve]
public ValidationError(string title = null, int status = 0, string detail = null, List<object> details = null, string requestId = null)
Parameters
Type | Name | Description |
---|---|---|
string | title | title param |
int | status | status param |
string | detail | detail param |
List<object> | details | details param |
string | requestId | requestId param |
Properties
Detail
Parameter detail of ValidationError
Declaration
[Preserve]
[DataMember(Name = "detail", EmitDefaultValue = false)]
public string Detail { get; }
Property Value
Type | Description |
---|---|
string |
Details
Parameter details of ValidationError
Declaration
[Preserve]
[DataMember(Name = "details", EmitDefaultValue = false)]
public List<JsonObject> Details { get; }
Property Value
Type | Description |
---|---|
List<JsonObject> |
RequestId
Parameter requestId of ValidationError
Declaration
[Preserve]
[DataMember(Name = "requestId", EmitDefaultValue = false)]
public string RequestId { get; }
Property Value
Type | Description |
---|---|
string |
Status
Parameter status of ValidationError
Declaration
[Preserve]
[DataMember(Name = "status", EmitDefaultValue = false)]
public int Status { get; }
Property Value
Type | Description |
---|---|
int |
Title
Parameter title of ValidationError
Declaration
[Preserve]
[DataMember(Name = "title", EmitDefaultValue = false)]
public string Title { get; }
Property Value
Type | Description |
---|---|
string |